CfnExecutionPlanProps
- class aws_cdk.aws_kendraranking.CfnExecutionPlanProps(*, name, capacity_units=None, description=None, tags=None)
Bases:
object
Properties for defining a
CfnExecutionPlan
.- Parameters:
name (
str
) – A name for the rescore execution plan.capacity_units (
Union
[IResolvable
,CapacityUnitsConfigurationProperty
,Dict
[str
,Any
],None
]) – 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 .description (
Optional
[str
]) – A description for the rescore execution plan.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_kendraranking as kendraranking cfn_execution_plan_props = kendraranking.CfnExecutionPlanProps( name="name", # the properties below are optional capacity_units=kendraranking.CfnExecutionPlan.CapacityUnitsConfigurationProperty( rescore_capacity_units=123 ), description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- capacity_units
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 .
- description
A description for the rescore execution plan.
- name
A name for the rescore execution plan.
- tags
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.