Interface CfnSegment.DemographicProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSegment.DemographicProperty.Jsii$Proxy
- Enclosing class:
CfnSegment
@Stability(Stable)
public static interface CfnSegment.DemographicProperty
extends software.amazon.jsii.JsiiSerializable
Specifies demographic-based criteria, such as device platform, for the segment.
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.*; DemographicProperty demographicProperty = DemographicProperty.builder() .appVersion(SetDimensionProperty.builder() .dimensionType("dimensionType") .values(List.of("values")) .build()) .channel(SetDimensionProperty.builder() .dimensionType("dimensionType") .values(List.of("values")) .build()) .deviceType(SetDimensionProperty.builder() .dimensionType("dimensionType") .values(List.of("values")) .build()) .make(SetDimensionProperty.builder() .dimensionType("dimensionType") .values(List.of("values")) .build()) .model(SetDimensionProperty.builder() .dimensionType("dimensionType") .values(List.of("values")) .build()) .platform(SetDimensionProperty.builder() .dimensionType("dimensionType") .values(List.of("values")) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSegment.DemographicProperty
static final class
An implementation forCfnSegment.DemographicProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The app version criteria for the segment.default Object
The channel criteria for the segment.default Object
The device type criteria for the segment.default Object
getMake()
The device make criteria for the segment.default Object
getModel()
The device model criteria for the segment.default Object
The device platform criteria for the segment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppVersion
The app version criteria for the segment. -
getChannel
The channel criteria for the segment. -
getDeviceType
The device type criteria for the segment. -
getMake
The device make criteria for the segment. -
getModel
The device model criteria for the segment. -
getPlatform
The device platform criteria for the segment. -
builder
-