Show / Hide Table of Contents

Class CfnExecutionPlanMixinProps

Properties for CfnExecutionPlanPropsMixin.

Inheritance
object
CfnExecutionPlanMixinProps
Implements
ICfnExecutionPlanMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.KendraRanking.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnExecutionPlanMixinProps : ICfnExecutionPlanMixinProps
Syntax (vb)
Public Class CfnExecutionPlanMixinProps Implements ICfnExecutionPlanMixinProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.KendraRanking.Mixins;

             var cfnExecutionPlanMixinProps = new CfnExecutionPlanMixinProps {
                 CapacityUnits = new CapacityUnitsConfigurationProperty {
                     RescoreCapacityUnits = 123
                 },
                 Description = "description",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnExecutionPlanMixinProps()

Properties for CfnExecutionPlanPropsMixin.

Properties

CapacityUnits

You can set additional capacity units to meet the needs of your rescore execution plan.

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.

Constructors

CfnExecutionPlanMixinProps()

Properties for CfnExecutionPlanPropsMixin.

public CfnExecutionPlanMixinProps()
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.KendraRanking.Mixins;

             var cfnExecutionPlanMixinProps = new CfnExecutionPlanMixinProps {
                 CapacityUnits = new CapacityUnitsConfigurationProperty {
                     RescoreCapacityUnits = 123
                 },
                 Description = "description",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

CapacityUnits

You can set additional capacity units to meet the needs of your rescore execution plan.

public object? CapacityUnits { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnExecutionPlanPropsMixin.ICapacityUnitsConfigurationProperty

Description

A description for the rescore execution plan.

public string? Description { get; set; }
Property Value

string

Remarks

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.

public string? Name { get; set; }
Property Value

string

Remarks

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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnExecutionPlanMixinProps
Back to top Generated by DocFX