interface CompositeSlotTypeSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.CompositeSlotTypeSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_CompositeSlotTypeSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.CompositeSlotTypeSettingProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.CompositeSlotTypeSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » CompositeSlotTypeSettingProperty |
A composite slot is a combination of two or more slots that capture multiple pieces of information in a single user input.
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';
const compositeSlotTypeSettingProperty: lex_mixins.CfnBotPropsMixin.CompositeSlotTypeSettingProperty = {
subSlots: [{
name: 'name',
slotTypeId: 'slotTypeId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| sub | IResolvable | (IResolvable | Sub)[] | Subslots in the composite slot. |
subSlots?
Type:
IResolvable | (IResolvable | Sub)[]
(optional)
Subslots in the composite slot.

.NET
Go
Java
Python
TypeScript