Show / Hide Table of Contents

Interface CfnBotPropsMixin.ISlotTypeValueProperty

Each slot type can have a set of values.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnBotPropsMixin.ISlotTypeValueProperty
Syntax (vb)
Public Interface CfnBotPropsMixin.ISlotTypeValueProperty
Remarks

Each SlotTypeValue represents a value that the slot type can take.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slottypevalue.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.Lex.Mixins;

             var slotTypeValueProperty = new SlotTypeValueProperty {
                 SampleValue = new SampleValueProperty {
                     Value = "value"
                 },
                 Synonyms = new [] { new SampleValueProperty {
                     Value = "value"
                 } }
             };

Synopsis

Properties

SampleValue

The value of the slot type entry.

Synonyms

Additional values related to the slot type entry.

Properties

SampleValue

The value of the slot type entry.

object? SampleValue { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slottypevalue.html#cfn-lex-bot-slottypevalue-samplevalue

Type union: either IResolvable or CfnBotPropsMixin.ISampleValueProperty

Synonyms

Additional values related to the slot type entry.

object? Synonyms { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slottypevalue.html#cfn-lex-bot-slottypevalue-synonyms

Type union: either IResolvable or (either IResolvable or CfnBotPropsMixin.ISampleValueProperty)[]

Back to top Generated by DocFX