interface SubSlotTypeCompositionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.SubSlotTypeCompositionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_SubSlotTypeCompositionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.SubSlotTypeCompositionProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.SubSlotTypeCompositionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » 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 { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const subSlotTypeCompositionProperty: lex.CfnBotPropsMixin.SubSlotTypeCompositionProperty = {
name: 'name',
slotTypeId: 'slotTypeId',
slotTypeName: 'slotTypeName',
};
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. |
| slot | string |
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.
slotTypeName?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript