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