interface SlotTypeValueProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Lex.CfnBot.SlotTypeValueProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_SlotTypeValueProperty |
![]() | software.amazon.awscdk.services.lex.CfnBot.SlotTypeValueProperty |
![]() | aws_cdk.aws_lex.CfnBot.SlotTypeValueProperty |
![]() | aws-cdk-lib » aws_lex » CfnBot » SlotTypeValueProperty |
Each slot type can have a set of values.
Each SlotTypeValue
represents a value that the slot type can take.
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';
const slotTypeValueProperty: lex.CfnBot.SlotTypeValueProperty = {
sampleValue: {
value: 'value',
},
// the properties below are optional
synonyms: [{
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
sample | IResolvable | Sample | The value of the slot type entry. |
synonyms? | IResolvable | IResolvable | Sample [] | Additional values related to the slot type entry. |
sampleValue
Type:
IResolvable
|
Sample
The value of the slot type entry.
synonyms?
Type:
IResolvable
|
IResolvable
|
Sample
[]
(optional)
Additional values related to the slot type entry.