interface ButtonProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.ButtonProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_ButtonProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.ButtonProperty |
Python | aws_cdk.aws_lex.CfnBot.ButtonProperty |
TypeScript | aws-cdk-lib » aws_lex » CfnBot » ButtonProperty |
Describes a button to use on a response card used to gather slot values from a user.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-button.html
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-lib';
const buttonProperty: lex.CfnBot.ButtonProperty = {
text: 'text',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
text | string | The text that appears on the button. |
value | string | The value returned to Amazon Lex when the user chooses this button. |
text
Type:
string
The text that appears on the button.
Use this to tell the user what value is returned when they choose this button.
value
Type:
string
The value returned to Amazon Lex when the user chooses this button.
This must be one of the slot values configured for the slot.