Interface ViewInputContent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ViewInputContent.Builder,ViewInputContent>,SdkBuilder<ViewInputContent.Builder,ViewInputContent>,SdkPojo
- Enclosing class:
- ViewInputContent
public static interface ViewInputContent.Builder extends SdkPojo, CopyableBuilder<ViewInputContent.Builder,ViewInputContent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ViewInputContent.Builderactions(String... actions)A list of possible actions from the view.ViewInputContent.Builderactions(Collection<String> actions)A list of possible actions from the view.ViewInputContent.Buildertemplate(String template)The view template representing the structure of the view.-
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
-
template
ViewInputContent.Builder template(String template)
The view template representing the structure of the view.
- Parameters:
template- The view template representing the structure of the view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
ViewInputContent.Builder actions(Collection<String> actions)
A list of possible actions from the view.
- Parameters:
actions- A list of possible actions from the view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
ViewInputContent.Builder actions(String... actions)
A list of possible actions from the view.
- Parameters:
actions- A list of possible actions from the view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-