Interface CfnCampaign.ISetDimensionProperty
Specifies the dimension type and values for a segment dimension.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCampaign.ISetDimensionProperty
Syntax (vb)
Public Interface CfnCampaign.ISetDimensionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var setDimensionProperty = new SetDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
};
Synopsis
Properties
| DimensionType | The type of segment dimension to use. |
| Values | The criteria values to use for the segment dimension. |
Properties
DimensionType
The type of segment dimension to use.
string? DimensionType { get; }
Property Value
Remarks
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.
Values
The criteria values to use for the segment dimension.
string[]? Values { get; }
Property Value
string[]
Remarks
Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.