Interface PredefinedHierarchy.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredefinedHierarchy.Builder,PredefinedHierarchy>,SdkBuilder<PredefinedHierarchy.Builder,PredefinedHierarchy>,SdkPojo
- Enclosing class:
- PredefinedHierarchy
@Mutable @NotThreadSafe 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.Buildercolumns(Collection<ColumnIdentifier> columns)The list of columns that define the predefined hierarchy.PredefinedHierarchy.Buildercolumns(Consumer<ColumnIdentifier.Builder>... columns)The list of columns that define the predefined hierarchy.PredefinedHierarchy.Buildercolumns(ColumnIdentifier... columns)The list of columns that define the predefined hierarchy.PredefinedHierarchy.BuilderdrillDownFilters(Collection<DrillDownFilter> drillDownFilters)The option that determines the drill down filters for the predefined hierarchy.PredefinedHierarchy.BuilderdrillDownFilters(Consumer<DrillDownFilter.Builder>... drillDownFilters)The option that determines the drill down filters for the predefined hierarchy.PredefinedHierarchy.BuilderdrillDownFilters(DrillDownFilter... drillDownFilters)The option that determines the drill down filters for the predefined hierarchy.PredefinedHierarchy.BuilderhierarchyId(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.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,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.Builderavoiding the need to create one manually viaDrillDownFilter.builder().When the
Consumercompletes,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)
-
-