Interface CfnExecutionPlanMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExecutionPlanMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:28.927Z")
@Stability(Stable)
public interface CfnExecutionPlanMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnExecutionPlanPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kendraranking.*;
CfnExecutionPlanMixinProps cfnExecutionPlanMixinProps = CfnExecutionPlanMixinProps.builder()
.capacityUnits(CapacityUnitsConfigurationProperty.builder()
.rescoreCapacityUnits(123)
.build())
.description("description")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExecutionPlanMixinPropsstatic final classAn implementation forCfnExecutionPlanMixinProps -
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.default StringgetName()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
-
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
IResolvableorCfnExecutionPlanPropsMixin.CapacityUnitsConfigurationProperty- See Also:
-
getDescription
A description for the rescore execution plan.- See Also:
-
getName
A name 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
CfnExecutionPlanMixinProps.BuilderofCfnExecutionPlanMixinProps
-