Interface EmptyVisual.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EmptyVisual.Builder,EmptyVisual>,SdkBuilder<EmptyVisual.Builder,EmptyVisual>,SdkPojo
- Enclosing class:
- EmptyVisual
public static interface EmptyVisual.Builder extends SdkPojo, CopyableBuilder<EmptyVisual.Builder,EmptyVisual>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmptyVisual.Builderactions(Collection<VisualCustomAction> actions)The list of custom actions that are configured for a visual.EmptyVisual.Builderactions(Consumer<VisualCustomAction.Builder>... actions)The list of custom actions that are configured for a visual.EmptyVisual.Builderactions(VisualCustomAction... actions)The list of custom actions that are configured for a visual.EmptyVisual.BuilderdataSetIdentifier(String dataSetIdentifier)The data set that is used in the empty visual.EmptyVisual.BuildervisualId(String visualId)The unique identifier of a visual.-
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
-
visualId
EmptyVisual.Builder visualId(String visualId)
The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.
- Parameters:
visualId- The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetIdentifier
EmptyVisual.Builder dataSetIdentifier(String dataSetIdentifier)
The data set that is used in the empty visual. Every visual requires a dataset to render.
- Parameters:
dataSetIdentifier- The data set that is used in the empty visual. Every visual requires a dataset to render.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
EmptyVisual.Builder actions(Collection<VisualCustomAction> actions)
The list of custom actions that are configured for a visual.
- Parameters:
actions- The list of custom actions that are configured for a visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
EmptyVisual.Builder actions(VisualCustomAction... actions)
The list of custom actions that are configured for a visual.
- Parameters:
actions- The list of custom actions that are configured for a visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
EmptyVisual.Builder actions(Consumer<VisualCustomAction.Builder>... actions)
The list of custom actions that are configured for a visual.
This is a convenience method that creates an instance of theVisualCustomAction.Builderavoiding the need to create one manually viaVisualCustomAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#actions(List.) - Parameters:
actions- a consumer that will call methods onVisualCustomAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#actions(java.util.Collection)
-
-