interface ButtonProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Lex.CfnBot.ButtonProperty | 
  Java | software.amazon.awscdk.services.lex.CfnBot.ButtonProperty | 
  Python | aws_cdk.aws_lex.CfnBot.ButtonProperty | 
  TypeScript  | @aws-cdk/aws-lex » CfnBot » ButtonProperty | 
Describes a button to use on a response card used to gather 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 * as lex from '@aws-cdk/aws-lex';
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.

 .NET
 Java
 Python
 TypeScript