Interface Widget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Widget.Builder,Widget>,SdkBuilder<Widget.Builder,Widget>,SdkPojo
- Enclosing class:
- Widget
public static interface Widget.Builder extends SdkPojo, CopyableBuilder<Widget.Builder,Widget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Widget.BuilderqueryAlias(String queryAlias)The query alias used to identify the query for the widget.Widget.BuilderqueryParameters(String... queryParameters)The query parameters for the widget.Widget.BuilderqueryParameters(Collection<String> queryParameters)The query parameters for the widget.Widget.BuilderqueryStatement(String queryStatement)The SQL query statement for the widget.Widget.BuilderviewProperties(Map<String,String> viewProperties)The view properties for the widget.-
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
-
queryAlias
Widget.Builder queryAlias(String queryAlias)
The query alias used to identify the query for the widget.
- Parameters:
queryAlias- The query alias used to identify the query for the widget.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStatement
Widget.Builder queryStatement(String queryStatement)
The SQL query statement for the widget.
- Parameters:
queryStatement- The SQL query statement for the widget.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryParameters
Widget.Builder queryParameters(Collection<String> queryParameters)
The query parameters for the widget.
- Parameters:
queryParameters- The query parameters for the widget.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryParameters
Widget.Builder queryParameters(String... queryParameters)
The query parameters for the widget.
- Parameters:
queryParameters- The query parameters for the widget.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
viewProperties
Widget.Builder viewProperties(Map<String,String> viewProperties)
The view properties for the widget. For more information about view properties, see View properties for widgets in the CloudTrail User Guide..
- Parameters:
viewProperties- The view properties for the widget. For more information about view properties, see View properties for widgets in the CloudTrail User Guide..- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-