@Stability(value=Stable)
public static interface CfnSegment.SetDimensionProperty
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.*;
SetDimensionProperty setDimensionProperty = SetDimensionProperty.builder()
.dimensionType("dimensionType")
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSegment.SetDimensionProperty.Builder
A builder for
CfnSegment.SetDimensionProperty |
static class |
CfnSegment.SetDimensionProperty.Jsii$Proxy
An implementation for
CfnSegment.SetDimensionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSegment.SetDimensionProperty.Builder |
builder() |
default String |
getDimensionType()
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 getDimensionType()
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.
@Stability(value=Stable) @Nullable default List<String> getValues()
Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.
@Stability(value=Stable) static CfnSegment.SetDimensionProperty.Builder builder()
Copyright © 2022. All rights reserved.