Interface Button.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Button.Builder,Button>,SdkBuilder<Button.Builder,Button>,SdkPojo
- Enclosing class:
- Button
public static interface Button.Builder extends SdkPojo, CopyableBuilder<Button.Builder,Button>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Button.Buildertext(String text)The text that is displayed on the button.Button.Buildervalue(String value)The value returned to Amazon Lex V2 when a user chooses the button.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
text
Button.Builder text(String text)
The text that is displayed on the button.
- Parameters:
text- The text that is displayed on the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Button.Builder value(String value)
The value returned to Amazon Lex V2 when a user chooses the button.
- Parameters:
value- The value returned to Amazon Lex V2 when a user chooses the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-