Interface ExplicitHierarchy.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ExplicitHierarchy.Builder,ExplicitHierarchy>
,SdkBuilder<ExplicitHierarchy.Builder,ExplicitHierarchy>
,SdkPojo
- Enclosing class:
- ExplicitHierarchy
public static interface ExplicitHierarchy.Builder extends SdkPojo, CopyableBuilder<ExplicitHierarchy.Builder,ExplicitHierarchy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExplicitHierarchy.Builder
columns(Collection<ColumnIdentifier> columns)
The list of columns that define the explicit hierarchy.ExplicitHierarchy.Builder
columns(Consumer<ColumnIdentifier.Builder>... columns)
The list of columns that define the explicit hierarchy.ExplicitHierarchy.Builder
columns(ColumnIdentifier... columns)
The list of columns that define the explicit hierarchy.ExplicitHierarchy.Builder
drillDownFilters(Collection<DrillDownFilter> drillDownFilters)
The option that determines the drill down filters for the explicit hierarchy.ExplicitHierarchy.Builder
drillDownFilters(Consumer<DrillDownFilter.Builder>... drillDownFilters)
The option that determines the drill down filters for the explicit hierarchy.ExplicitHierarchy.Builder
drillDownFilters(DrillDownFilter... drillDownFilters)
The option that determines the drill down filters for the explicit hierarchy.ExplicitHierarchy.Builder
hierarchyId(String hierarchyId)
The hierarchy ID of the explicit hierarchy.-
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
-
hierarchyId
ExplicitHierarchy.Builder hierarchyId(String hierarchyId)
The hierarchy ID of the explicit hierarchy.
- Parameters:
hierarchyId
- The hierarchy ID of the explicit hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
ExplicitHierarchy.Builder columns(Collection<ColumnIdentifier> columns)
The list of columns that define the explicit hierarchy.
- Parameters:
columns
- The list of columns that define the explicit hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
ExplicitHierarchy.Builder columns(ColumnIdentifier... columns)
The list of columns that define the explicit hierarchy.
- Parameters:
columns
- The list of columns that define the explicit hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
ExplicitHierarchy.Builder columns(Consumer<ColumnIdentifier.Builder>... columns)
The list of columns that define the explicit hierarchy.
This is a convenience method that creates an instance of theColumnIdentifier.Builder
avoiding the need to create one manually viaColumnIdentifier.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#columns(List
.) - Parameters:
columns
- a consumer that will call methods onColumnIdentifier.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#columns(java.util.Collection
)
-
drillDownFilters
ExplicitHierarchy.Builder drillDownFilters(Collection<DrillDownFilter> drillDownFilters)
The option that determines the drill down filters for the explicit hierarchy.
- Parameters:
drillDownFilters
- The option that determines the drill down filters for the explicit hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
drillDownFilters
ExplicitHierarchy.Builder drillDownFilters(DrillDownFilter... drillDownFilters)
The option that determines the drill down filters for the explicit hierarchy.
- Parameters:
drillDownFilters
- The option that determines the drill down filters for the explicit hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
drillDownFilters
ExplicitHierarchy.Builder drillDownFilters(Consumer<DrillDownFilter.Builder>... drillDownFilters)
The option that determines the drill down filters for the explicit hierarchy.
This is a convenience method that creates an instance of theDrillDownFilter.Builder
avoiding the need to create one manually viaDrillDownFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#drillDownFilters(List
.) - Parameters:
drillDownFilters
- a consumer that will call methods onDrillDownFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#drillDownFilters(java.util.Collection
)
-
-