@Stability(value=Stable)
public static interface CfnCampaign.AttributeDimensionProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.pinpoint.*;
AttributeDimensionProperty attributeDimensionProperty = AttributeDimensionProperty.builder()
.attributeType("attributeType")
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCampaign.AttributeDimensionProperty.Builder
A builder for
CfnCampaign.AttributeDimensionProperty |
static class |
CfnCampaign.AttributeDimensionProperty.Jsii$Proxy
An implementation for
CfnCampaign.AttributeDimensionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCampaign.AttributeDimensionProperty.Builder |
builder() |
default String |
getAttributeType()
The type of segment dimension to use.
|
default List<String> |
getValues()
The criteria values to use for the segment dimension.
|
@Stability(value=Stable) @Nullable default String getAttributeType()
INCLUSIVE – endpoints that have attributes matching the values are included in the segment.EXCLUSIVE – endpoints that have attributes matching the values are excluded from 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.BETWEEN – endpoints with attributes read as ISO_INSTANT datetimes between the values 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.@Stability(value=Stable) @Nullable default List<String> getValues()
Depending on the value of the AttributeType property, endpoints are included or excluded from the segment if their attribute values match the criteria values.
@Stability(value=Stable) static CfnCampaign.AttributeDimensionProperty.Builder builder()
Copyright © 2022. All rights reserved.