Interface AttributeDimension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AttributeDimension.Builder,AttributeDimension>,SdkBuilder<AttributeDimension.Builder,AttributeDimension>,SdkPojo
- Enclosing class:
- AttributeDimension
public static interface AttributeDimension.Builder extends SdkPojo, CopyableBuilder<AttributeDimension.Builder,AttributeDimension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeDimension.BuilderdimensionType(String dimensionType)The action to segment with.AttributeDimension.BuilderdimensionType(AttributeDimensionType dimensionType)The action to segment with.AttributeDimension.Buildervalues(String... values)The values to apply the DimensionType on.AttributeDimension.Buildervalues(Collection<String> values)The values to apply the DimensionType on.-
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
-
dimensionType
AttributeDimension.Builder dimensionType(String dimensionType)
The action to segment with.
- Parameters:
dimensionType- The action to segment with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeDimensionType,AttributeDimensionType
-
dimensionType
AttributeDimension.Builder dimensionType(AttributeDimensionType dimensionType)
The action to segment with.
- Parameters:
dimensionType- The action to segment with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeDimensionType,AttributeDimensionType
-
values
AttributeDimension.Builder values(Collection<String> values)
The values to apply the DimensionType on.
- Parameters:
values- The values to apply the DimensionType on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
AttributeDimension.Builder values(String... values)
The values to apply the DimensionType on.
- Parameters:
values- The values to apply the DimensionType on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-