CfnExecutionPlanMixinProps
- class aws_cdk.mixins_preview.aws_kendraranking.mixins.CfnExecutionPlanMixinProps(*, capacity_units=None, description=None, name=None, tags=None)
Bases:
objectProperties for CfnExecutionPlanPropsMixin.
- Parameters:
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.name (
Optional[str]) – A name 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.mixins_preview.aws_kendraranking import mixins as kendraranking_mixins cfn_execution_plan_mixin_props = kendraranking_mixins.CfnExecutionPlanMixinProps( capacity_units=kendraranking_mixins.CfnExecutionPlanPropsMixin.CapacityUnitsConfigurationProperty( rescore_capacity_units=123 ), description="description", name="name", 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.