Class CfnSegment.DemographicProperty
Specifies demographic-based criteria, such as device platform, for the segment.
Inheritance
System.Object
CfnSegment.DemographicProperty
Implements
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DemographicProperty : Object, CfnSegment.IDemographicProperty
Syntax (vb)
Public Class DemographicProperty
Inherits Object
Implements CfnSegment.IDemographicProperty
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 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() |
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()
public DemographicProperty()
Properties
AppVersion
The app version criteria for the segment.
public object AppVersion { get; set; }
Property Value
System.Object
Remarks
Channel
The channel criteria for the segment.
public object Channel { get; set; }
Property Value
System.Object
Remarks
DeviceType
The device type criteria for the segment.
public object DeviceType { get; set; }
Property Value
System.Object
Remarks
Make
The device make criteria for the segment.
public object Make { get; set; }
Property Value
System.Object
Remarks
Model
The device model criteria for the segment.
public object Model { get; set; }
Property Value
System.Object
Remarks
Platform
The device platform criteria for the segment.
public object Platform { get; set; }
Property Value
System.Object