Interface DefaultButtonConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DefaultButtonConfiguration.Builder,DefaultButtonConfiguration>,SdkBuilder<DefaultButtonConfiguration.Builder,DefaultButtonConfiguration>,SdkPojo
- Enclosing class:
- DefaultButtonConfiguration
public static interface DefaultButtonConfiguration.Builder extends SdkPojo, CopyableBuilder<DefaultButtonConfiguration.Builder,DefaultButtonConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DefaultButtonConfiguration.BuilderbackgroundColor(String backgroundColor)The background color of the button.DefaultButtonConfiguration.BuilderborderRadius(Integer borderRadius)The border radius of the button.DefaultButtonConfiguration.BuilderbuttonAction(String buttonAction)Action triggered by the button.DefaultButtonConfiguration.BuilderbuttonAction(ButtonAction buttonAction)Action triggered by the button.DefaultButtonConfiguration.Builderlink(String link)Button destination.DefaultButtonConfiguration.Buildertext(String text)Button text.DefaultButtonConfiguration.BuildertextColor(String textColor)The text color of 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, sdkFields
-
-
-
-
Method Detail
-
backgroundColor
DefaultButtonConfiguration.Builder backgroundColor(String backgroundColor)
The background color of the button.
- Parameters:
backgroundColor- The background color of the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
borderRadius
DefaultButtonConfiguration.Builder borderRadius(Integer borderRadius)
The border radius of the button.
- Parameters:
borderRadius- The border radius of the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buttonAction
DefaultButtonConfiguration.Builder buttonAction(String buttonAction)
Action triggered by the button.
- Parameters:
buttonAction- Action triggered by the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ButtonAction,ButtonAction
-
buttonAction
DefaultButtonConfiguration.Builder buttonAction(ButtonAction buttonAction)
Action triggered by the button.
- Parameters:
buttonAction- Action triggered by the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ButtonAction,ButtonAction
-
link
DefaultButtonConfiguration.Builder link(String link)
Button destination.
- Parameters:
link- Button destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
text
DefaultButtonConfiguration.Builder text(String text)
Button text.
- Parameters:
text- Button text.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textColor
DefaultButtonConfiguration.Builder textColor(String textColor)
The text color of the button.
- Parameters:
textColor- The text color of the button.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-