interface SlotValueOverrideMapProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Lex.CfnBot.SlotValueOverrideMapProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_SlotValueOverrideMapProperty | 
|  Java | software.amazon.awscdk.services.lex.CfnBot.SlotValueOverrideMapProperty | 
|  Python | aws_cdk.aws_lex.CfnBot.SlotValueOverrideMapProperty | 
|  TypeScript | aws-cdk-lib»aws_lex»CfnBot»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-lib';
declare const slotValueOverrideProperty_: lex.CfnBot.SlotValueOverrideProperty;
const slotValueOverrideMapProperty: lex.CfnBot.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.
