Interface CfnBot.ButtonProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.ButtonProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.ButtonProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.lex.*;
 ButtonProperty buttonProperty = ButtonProperty.builder()
         .text("text")
         .value("value")
         .build();
 

See Also: