Interface CfnCampaign.SetDimensionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaign.SetDimensionProperty.Jsii$Proxy
Enclosing class:
CfnCampaign

@Stability(Stable) public static interface CfnCampaign.SetDimensionProperty extends software.amazon.jsii.JsiiSerializable
Specifies the dimension type and values for a segment dimension.

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();
 
  • Method Details

    • getDimensionType

      @Stability(Stable) @Nullable default String getDimensionType()
      The type of segment dimension to use.

      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.

    • getValues

      @Stability(Stable) @Nullable default List<String> getValues()
      The criteria values to use for the segment dimension.

      Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.

    • builder

      @Stability(Stable) static CfnCampaign.SetDimensionProperty.Builder builder()
      Returns:
      a CfnCampaign.SetDimensionProperty.Builder of CfnCampaign.SetDimensionProperty