Show / Hide Table of Contents

Class CfnCampaign.SetDimensionProperty

Specifies the dimension type and values for a segment dimension.

Inheritance
object
CfnCampaign.SetDimensionProperty
Implements
CfnCampaign.ISetDimensionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.SetDimensionProperty : CfnCampaign.ISetDimensionProperty
Syntax (vb)
Public Class CfnCampaign.SetDimensionProperty Implements CfnCampaign.ISetDimensionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html

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

Constructors

SetDimensionProperty()

Specifies the dimension type and values for a segment dimension.

Properties

DimensionType

The type of segment dimension to use.

Values

The criteria values to use for the segment dimension.

Constructors

SetDimensionProperty()

Specifies the dimension type and values for a segment dimension.

public SetDimensionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html

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" }
             };

Properties

DimensionType

The type of segment dimension to use.

public string? DimensionType { get; set; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-dimensiontype

Values

The criteria values to use for the segment dimension.

public string[]? Values { get; set; }
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-setdimension.html#cfn-pinpoint-campaign-setdimension-values

Implements

CfnCampaign.ISetDimensionProperty
Back to top Generated by DocFX