interface ButtonProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.ButtonProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_ButtonProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.ButtonProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.ButtonProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const buttonProperty: lex_mixins.CfnBotPropsMixin.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
(optional)
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
(optional)
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
Go
Java
Python
TypeScript