Class CfnSegment.DemographicProperty
Specifies demographic-based criteria, such as device platform, for the segment.
Implements
Inherited Members
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
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
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
Remarks
Channel
The channel criteria for the segment.
public object? Channel { get; set; }
Property Value
Remarks
DeviceType
The device type criteria for the segment.
public object? DeviceType { get; set; }
Property Value
Remarks
Make
The device make criteria for the segment.
public object? Make { get; set; }
Property Value
Remarks
Model
The device model criteria for the segment.
public object? Model { get; set; }
Property Value
Remarks
Platform
The device platform criteria for the segment.
public object? Platform { get; set; }