Show / Hide Table of Contents

Class CfnBot.SlotValueOverrideMapProperty

Maps a slot name to the SlotValueOverride object.

Inheritance
object
CfnBot.SlotValueOverrideMapProperty
Implements
CfnBot.ISlotValueOverrideMapProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBot.SlotValueOverrideMapProperty : CfnBot.ISlotValueOverrideMapProperty
Syntax (vb)
Public Class CfnBot.SlotValueOverrideMapProperty Implements CfnBot.ISlotValueOverrideMapProperty
Remarks

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

             SlotValueOverrideProperty slotValueOverrideProperty_;

             var slotValueOverrideMapProperty = new SlotValueOverrideMapProperty {
                 SlotName = "slotName",
                 SlotValueOverride = new SlotValueOverrideProperty {
                     Shape = "shape",
                     Value = new SlotValueProperty {
                         InterpretedValue = "interpretedValue"
                     },
                     Values = new [] { slotValueOverrideProperty_ }
                 }
             };

Synopsis

Constructors

SlotValueOverrideMapProperty()

Maps a slot name to the SlotValueOverride object.

Properties

SlotName

The name of the slot.

SlotValueOverride

The SlotValueOverride object to which the slot name will be mapped.

Constructors

SlotValueOverrideMapProperty()

Maps a slot name to the SlotValueOverride object.

public SlotValueOverrideMapProperty()
Remarks

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

             SlotValueOverrideProperty slotValueOverrideProperty_;

             var slotValueOverrideMapProperty = new SlotValueOverrideMapProperty {
                 SlotName = "slotName",
                 SlotValueOverride = new SlotValueOverrideProperty {
                     Shape = "shape",
                     Value = new SlotValueProperty {
                         InterpretedValue = "interpretedValue"
                     },
                     Values = new [] { slotValueOverrideProperty_ }
                 }
             };

Properties

SlotName

The name of the slot.

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

string

Remarks

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

SlotValueOverride

The SlotValueOverride object to which the slot name will be mapped.

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

object

Remarks

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

Implements

CfnBot.ISlotValueOverrideMapProperty
Back to top Generated by DocFX