Interface FilterGroup.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterGroup.Builder,FilterGroup>,SdkBuilder<FilterGroup.Builder,FilterGroup>,SdkPojo
- Enclosing class:
- FilterGroup
public static interface FilterGroup.Builder extends SdkPojo, CopyableBuilder<FilterGroup.Builder,FilterGroup>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterGroup.Builderdimensions(Collection<FilterDimension> dimensions)Object that holds the attributes to filter on.FilterGroup.Builderdimensions(Consumer<FilterDimension.Builder>... dimensions)Object that holds the attributes to filter on.FilterGroup.Builderdimensions(FilterDimension... dimensions)Object that holds the attributes to filter on.FilterGroup.Buildertype(String type)The type of logical relationship between the dimensions of the Filter group.FilterGroup.Buildertype(Type type)The type of logical relationship between the dimensions of the Filter group.-
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
-
type
FilterGroup.Builder type(String type)
The type of logical relationship between the dimensions of the Filter group.
-
type
FilterGroup.Builder type(Type type)
The type of logical relationship between the dimensions of the Filter group.
-
dimensions
FilterGroup.Builder dimensions(Collection<FilterDimension> dimensions)
Object that holds the attributes to filter on.
- Parameters:
dimensions- Object that holds the attributes to filter on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensions
FilterGroup.Builder dimensions(FilterDimension... dimensions)
Object that holds the attributes to filter on.
- Parameters:
dimensions- Object that holds the attributes to filter on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensions
FilterGroup.Builder dimensions(Consumer<FilterDimension.Builder>... dimensions)
Object that holds the attributes to filter on.
This is a convenience method that creates an instance of theFilterDimension.Builderavoiding the need to create one manually viaFilterDimension.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dimensions(List.) - Parameters:
dimensions- a consumer that will call methods onFilterDimension.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dimensions(java.util.Collection)
-
-