Interface CfnExecutionPlanProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExecutionPlanProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:43.859Z")
@Stability(Stable)
public interface CfnExecutionPlanProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnExecutionPlan.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kendraranking.*;
CfnExecutionPlanProps cfnExecutionPlanProps = CfnExecutionPlanProps.builder()
.name("name")
// the properties below are optional
.capacityUnits(CapacityUnitsConfigurationProperty.builder()
.rescoreCapacityUnits(123)
.build())
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExecutionPlanPropsstatic final classAn implementation forCfnExecutionPlanProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectYou can set additional capacity units to meet the needs of your rescore execution plan.default StringA description for the rescore execution plan.getName()A name for the rescore execution plan.getTags()A list of key-value pairs that identify or categorize your rescore execution plan.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the rescore execution plan.- See Also:
-
getCapacityUnits
You can set additional capacity units to meet the needs of your rescore execution plan.You are given a single capacity unit by default. If you want to use the default capacity, you don't set additional capacity units. For more information on the default capacity and additional capacity units, see Adjusting capacity .
Returns union: either
IResolvableorCfnExecutionPlan.CapacityUnitsConfigurationProperty- See Also:
-
getDescription
A description for the rescore execution plan.- See Also:
-
getTags
A list of key-value pairs that identify or categorize your rescore execution plan.You can also use tags to help control access to the rescore execution plan. Tag keys and values can consist of Unicode letters, digits, white space. They can also consist of underscore, period, colon, equal, plus, and asperand.
- See Also:
-
builder
- Returns:
- a
CfnExecutionPlanProps.BuilderofCfnExecutionPlanProps
-