Interface RecencyDimension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecencyDimension.Builder,RecencyDimension>,SdkBuilder<RecencyDimension.Builder,RecencyDimension>,SdkPojo
- Enclosing class:
- RecencyDimension
public static interface RecencyDimension.Builder extends SdkPojo, CopyableBuilder<RecencyDimension.Builder,RecencyDimension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecencyDimension.Builderduration(String duration)The duration to use when determining whether an endpoint is active or inactive.RecencyDimension.Builderduration(Duration duration)The duration to use when determining whether an endpoint is active or inactive.RecencyDimension.BuilderrecencyType(String recencyType)The type of recency dimension to use for the segment.RecencyDimension.BuilderrecencyType(RecencyType recencyType)The type of recency dimension to use for the segment.-
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
-
duration
RecencyDimension.Builder duration(String duration)
The duration to use when determining whether an endpoint is active or inactive.
-
duration
RecencyDimension.Builder duration(Duration duration)
The duration to use when determining whether an endpoint is active or inactive.
-
recencyType
RecencyDimension.Builder recencyType(String recencyType)
The type of recency dimension to use for the segment. Valid values are: ACTIVE, endpoints that were active within the specified duration are included in the segment; and, INACTIVE, endpoints that weren't active within the specified duration are included in the segment.
- Parameters:
recencyType- The type of recency dimension to use for the segment. Valid values are: ACTIVE, endpoints that were active within the specified duration are included in the segment; and, INACTIVE, endpoints that weren't active within the specified duration are included in the segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecencyType,RecencyType
-
recencyType
RecencyDimension.Builder recencyType(RecencyType recencyType)
The type of recency dimension to use for the segment. Valid values are: ACTIVE, endpoints that were active within the specified duration are included in the segment; and, INACTIVE, endpoints that weren't active within the specified duration are included in the segment.
- Parameters:
recencyType- The type of recency dimension to use for the segment. Valid values are: ACTIVE, endpoints that were active within the specified duration are included in the segment; and, INACTIVE, endpoints that weren't active within the specified duration are included in the segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecencyType,RecencyType
-
-