interface SlotValueOverrideMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.SlotValueOverrideMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_SlotValueOverrideMapProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.SlotValueOverrideMapProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.SlotValueOverrideMapProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » SlotValueOverrideMapProperty |
Maps a slot name to the SlotValueOverride object.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
declare const slotValueOverrideProperty_: lex.CfnBotPropsMixin.SlotValueOverrideProperty;
const slotValueOverrideMapProperty: lex.CfnBotPropsMixin.SlotValueOverrideMapProperty = {
slotName: 'slotName',
slotValueOverride: {
shape: 'shape',
value: {
interpretedValue: 'interpretedValue',
},
values: [slotValueOverrideProperty_],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| slot | string | The name of the slot. |
| slot | IResolvable | Slot | The SlotValueOverride object to which the slot name will be mapped. |
slotName?
Type:
string
(optional)
The name of the slot.
slotValueOverride?
Type:
IResolvable | Slot
(optional)
The SlotValueOverride object to which the slot name will be mapped.

.NET
Go
Java
Python
TypeScript