Interface PredefinedHierarchy.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PredefinedHierarchy.Builder,PredefinedHierarchy>
,SdkBuilder<PredefinedHierarchy.Builder,PredefinedHierarchy>
,SdkPojo
- Enclosing class:
- PredefinedHierarchy
public static interface PredefinedHierarchy.Builder extends SdkPojo, CopyableBuilder<PredefinedHierarchy.Builder,PredefinedHierarchy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PredefinedHierarchy.Builder
columns(Collection<ColumnIdentifier> columns)
The list of columns that define the predefined hierarchy.PredefinedHierarchy.Builder
columns(Consumer<ColumnIdentifier.Builder>... columns)
The list of columns that define the predefined hierarchy.PredefinedHierarchy.Builder
columns(ColumnIdentifier... columns)
The list of columns that define the predefined hierarchy.PredefinedHierarchy.Builder
drillDownFilters(Collection<DrillDownFilter> drillDownFilters)
The option that determines the drill down filters for the predefined hierarchy.PredefinedHierarchy.Builder
drillDownFilters(Consumer<DrillDownFilter.Builder>... drillDownFilters)
The option that determines the drill down filters for the predefined hierarchy.PredefinedHierarchy.Builder
drillDownFilters(DrillDownFilter... drillDownFilters)
The option that determines the drill down filters for the predefined hierarchy.PredefinedHierarchy.Builder
hierarchyId(String hierarchyId)
The hierarchy ID of the predefined 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
hierarchyId
PredefinedHierarchy.Builder hierarchyId(String hierarchyId)
The hierarchy ID of the predefined hierarchy.
- Parameters:
hierarchyId
- The hierarchy ID of the predefined hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
PredefinedHierarchy.Builder columns(Collection<ColumnIdentifier> columns)
The list of columns that define the predefined hierarchy.
- Parameters:
columns
- The list of columns that define the predefined hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
PredefinedHierarchy.Builder columns(ColumnIdentifier... columns)
The list of columns that define the predefined hierarchy.
- Parameters:
columns
- The list of columns that define the predefined hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
PredefinedHierarchy.Builder columns(Consumer<ColumnIdentifier.Builder>... columns)
The list of columns that define the predefined 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
PredefinedHierarchy.Builder drillDownFilters(Collection<DrillDownFilter> drillDownFilters)
The option that determines the drill down filters for the predefined hierarchy.
- Parameters:
drillDownFilters
- The option that determines the drill down filters for the predefined hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
drillDownFilters
PredefinedHierarchy.Builder drillDownFilters(DrillDownFilter... drillDownFilters)
The option that determines the drill down filters for the predefined hierarchy.
- Parameters:
drillDownFilters
- The option that determines the drill down filters for the predefined hierarchy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
drillDownFilters
PredefinedHierarchy.Builder drillDownFilters(Consumer<DrillDownFilter.Builder>... drillDownFilters)
The option that determines the drill down filters for the predefined 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
)
-
-