interface SlotValueOverrideMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.SlotValueOverrideMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_SlotValueOverrideMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.SlotValueOverrideMapProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.SlotValueOverrideMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
declare const slotValueOverrideProperty_: lex_mixins.CfnBotPropsMixin.SlotValueOverrideProperty;
const slotValueOverrideMapProperty: lex_mixins.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