interface SubSlotTypeCompositionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.SubSlotTypeCompositionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_SubSlotTypeCompositionProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.SubSlotTypeCompositionProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.SubSlotTypeCompositionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » SubSlotTypeCompositionProperty |
Subslot type composition.
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 subSlotTypeCompositionProperty: lex_mixins.CfnBotPropsMixin.SubSlotTypeCompositionProperty = {
name: 'name',
slotTypeId: 'slotTypeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Name of a constituent sub slot inside a composite slot. |
| slot | string | The unique identifier assigned to a slot type. |
name?
Type:
string
(optional)
Name of a constituent sub slot inside a composite slot.
slotTypeId?
Type:
string
(optional)
The unique identifier assigned to a slot type.
This refers to either a built-in slot type or the unique slotTypeId of a custom slot type.

.NET
Go
Java
Python
TypeScript