Show / Hide Table of Contents

Class CfnSegment.DemographicProperty

Specifies demographic-based criteria, such as device platform, for the segment.

Inheritance
object
CfnSegment.DemographicProperty
Implements
CfnSegment.IDemographicProperty
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 CfnSegment.DemographicProperty : CfnSegment.IDemographicProperty
Syntax (vb)
Public Class CfnSegment.DemographicProperty Implements CfnSegment.IDemographicProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.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 demographicProperty = new DemographicProperty {
                 AppVersion = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Channel = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 DeviceType = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Make = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Model = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Platform = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 }
             };

Synopsis

Constructors

DemographicProperty()

Specifies demographic-based criteria, such as device platform, for the segment.

Properties

AppVersion

The app version criteria for the segment.

Channel

The channel criteria for the segment.

DeviceType

The device type criteria for the segment.

Make

The device make criteria for the segment.

Model

The device model criteria for the segment.

Platform

The device platform criteria for the segment.

Constructors

DemographicProperty()

Specifies demographic-based criteria, such as device platform, for the segment.

public DemographicProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.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 demographicProperty = new DemographicProperty {
                 AppVersion = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Channel = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 DeviceType = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Make = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Model = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Platform = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 }
             };

Properties

AppVersion

The app version criteria for the segment.

public object? AppVersion { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.html#cfn-pinpoint-segment-demographic-appversion

Type union: either IResolvable or CfnSegment.ISetDimensionProperty

Channel

The channel criteria for the segment.

public object? Channel { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.html#cfn-pinpoint-segment-demographic-channel

Type union: either IResolvable or CfnSegment.ISetDimensionProperty

DeviceType

The device type criteria for the segment.

public object? DeviceType { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.html#cfn-pinpoint-segment-demographic-devicetype

Type union: either IResolvable or CfnSegment.ISetDimensionProperty

Make

The device make criteria for the segment.

public object? Make { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.html#cfn-pinpoint-segment-demographic-make

Type union: either IResolvable or CfnSegment.ISetDimensionProperty

Model

The device model criteria for the segment.

public object? Model { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.html#cfn-pinpoint-segment-demographic-model

Type union: either IResolvable or CfnSegment.ISetDimensionProperty

Platform

The device platform criteria for the segment.

public object? Platform { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-demographic.html#cfn-pinpoint-segment-demographic-platform

Type union: either IResolvable or CfnSegment.ISetDimensionProperty

Implements

CfnSegment.IDemographicProperty
Back to top Generated by DocFX