Interface SetDimension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SetDimension.Builder,SetDimension>,SdkBuilder<SetDimension.Builder,SetDimension>,SdkPojo
- Enclosing class:
- SetDimension
public static interface SetDimension.Builder extends SdkPojo, CopyableBuilder<SetDimension.Builder,SetDimension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SetDimension.BuilderdimensionType(String dimensionType)The type of segment dimension to use.SetDimension.BuilderdimensionType(DimensionType dimensionType)The type of segment dimension to use.SetDimension.Buildervalues(String... values)The criteria values to use for the segment dimension.SetDimension.Buildervalues(Collection<String> values)The criteria values to use for the segment dimension.-
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
-
dimensionType
SetDimension.Builder dimensionType(String dimensionType)
The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.
- Parameters:
dimensionType- The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DimensionType,DimensionType
-
dimensionType
SetDimension.Builder dimensionType(DimensionType dimensionType)
The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.
- Parameters:
dimensionType- The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DimensionType,DimensionType
-
values
SetDimension.Builder values(Collection<String> values)
The criteria values to use for the segment dimension. Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.
- Parameters:
values- The criteria values to use for the segment dimension. Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
SetDimension.Builder values(String... values)
The criteria values to use for the segment dimension. Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.
- Parameters:
values- The criteria values to use for the segment dimension. Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-