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.BuilderattributeType(String attributeType)The type of segment dimension to use.AttributeDimension.BuilderattributeType(AttributeType attributeType)The type of segment dimension to use.AttributeDimension.Buildervalues(String... values)The criteria values to use for the segment dimension.AttributeDimension.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
-
attributeType
AttributeDimension.Builder attributeType(String attributeType)
The type of segment dimension to use. Valid values are:
- INCLUSIVE - endpoints that have attributes matching the values are included in the segment.
- EXCLUSIVE - endpoints that have attributes matching the values are excluded in the segment.
- CONTAINS - endpoints that have attributes' substrings match the values are included in the segment.
- BEFORE - endpoints with attributes read as ISO_INSTANT datetimes before the value are included in the segment.
- AFTER - endpoints with attributes read as ISO_INSTANT datetimes after the value are included in the segment.
- ON - endpoints with attributes read as ISO_INSTANT dates on the value are included in the segment. Time is ignored in this comparison.
- BETWEEN - endpoints with attributes read as ISO_INSTANT datetimes between the values are included in the segment.
- Parameters:
attributeType- The type of segment dimension to use. Valid values are:- INCLUSIVE - endpoints that have attributes matching the values are included in the segment.
- EXCLUSIVE - endpoints that have attributes matching the values are excluded in the segment.
- CONTAINS - endpoints that have attributes' substrings match the values are included in the segment.
- BEFORE - endpoints with attributes read as ISO_INSTANT datetimes before the value are included in the segment.
- AFTER - endpoints with attributes read as ISO_INSTANT datetimes after the value are included in the segment.
- ON - endpoints with attributes read as ISO_INSTANT dates on the value are included in the segment. Time is ignored in this comparison.
- BETWEEN - endpoints with attributes read as ISO_INSTANT datetimes between the values are included in the segment.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeType,AttributeType
-
attributeType
AttributeDimension.Builder attributeType(AttributeType attributeType)
The type of segment dimension to use. Valid values are:
- INCLUSIVE - endpoints that have attributes matching the values are included in the segment.
- EXCLUSIVE - endpoints that have attributes matching the values are excluded in the segment.
- CONTAINS - endpoints that have attributes' substrings match the values are included in the segment.
- BEFORE - endpoints with attributes read as ISO_INSTANT datetimes before the value are included in the segment.
- AFTER - endpoints with attributes read as ISO_INSTANT datetimes after the value are included in the segment.
- ON - endpoints with attributes read as ISO_INSTANT dates on the value are included in the segment. Time is ignored in this comparison.
- BETWEEN - endpoints with attributes read as ISO_INSTANT datetimes between the values are included in the segment.
- Parameters:
attributeType- The type of segment dimension to use. Valid values are:- INCLUSIVE - endpoints that have attributes matching the values are included in the segment.
- EXCLUSIVE - endpoints that have attributes matching the values are excluded in the segment.
- CONTAINS - endpoints that have attributes' substrings match the values are included in the segment.
- BEFORE - endpoints with attributes read as ISO_INSTANT datetimes before the value are included in the segment.
- AFTER - endpoints with attributes read as ISO_INSTANT datetimes after the value are included in the segment.
- ON - endpoints with attributes read as ISO_INSTANT dates on the value are included in the segment. Time is ignored in this comparison.
- BETWEEN - endpoints with attributes read as ISO_INSTANT datetimes between the values are included in the segment.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeType,AttributeType
-
values
AttributeDimension.Builder values(Collection<String> values)
The criteria values to use for the segment dimension. Depending on the value of the AttributeType property, endpoints are included or excluded from the segment if their attribute values match the criteria values.
- Parameters:
values- The criteria values to use for the segment dimension. Depending on the value of the AttributeType property, endpoints are included or excluded from the segment if their attribute values match the criteria values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
AttributeDimension.Builder values(String... values)
The criteria values to use for the segment dimension. Depending on the value of the AttributeType property, endpoints are included or excluded from the segment if their attribute values match the criteria values.
- Parameters:
values- The criteria values to use for the segment dimension. Depending on the value of the AttributeType property, endpoints are included or excluded from the segment if their attribute values match the criteria values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-