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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendraranking-executionplan.html

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendraranking-executionplan.html#cfn-kendraranking-executionplan-capacityunits

description

A description for the rescore execution plan.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendraranking-executionplan.html#cfn-kendraranking-executionplan-description

name

A name for the rescore execution plan.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendraranking-executionplan.html#cfn-kendraranking-executionplan-name

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendraranking-executionplan.html#cfn-kendraranking-executionplan-tags