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 possible actions from the view.ViewContent.Builderactions(Collection<String> actions)A list of possible actions from the view.ViewContent.BuilderinputSchema(String inputSchema)The data schema matching data that the view template must be provided 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 data schema matching data that the view template must be provided to render.
- Parameters:
inputSchema- The data schema matching data that the view template must be provided 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 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
ViewContent.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.
-
-