interface SlotPriorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.SlotPriorityProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_SlotPriorityProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.SlotPriorityProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.SlotPriorityProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » 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 { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const slotPriorityProperty: lex.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