interface SlotPriorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.SlotPriorityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_SlotPriorityProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.SlotPriorityProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.SlotPriorityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » SlotPriorityProperty |
Sets the priority that Amazon Lex should use when eliciting slot values from a user.
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 slotPriorityProperty: lex_mixins.CfnBotPropsMixin.SlotPriorityProperty = {
priority: 123,
slotName: 'slotName',
};
Properties
| Name | Type | Description |
|---|---|---|
| priority? | number | The priority that Amazon Lex should apply to the slot. |
| slot | string | The name of the slot. |
priority?
Type:
number
(optional)
The priority that Amazon Lex should apply to the slot.
slotName?
Type:
string
(optional)
The name of the slot.

.NET
Go
Java
Python
TypeScript