aws-cdk-lib.aws_lex.CfnBot.ButtonProperty

interface ButtonProperty

LanguageType name
.NETAmazon.CDK.AWS.Lex.CfnBot.ButtonProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_ButtonProperty
Javasoftware.amazon.awscdk.services.lex.CfnBot.ButtonProperty
Pythonaws_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.

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

NameTypeDescription
textstringThe text that appears on the button.
valuestringThe 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.