Interface CfnSegment.ILocationProperty
Specifies location-based criteria, such as region or GPS coordinates, for the segment.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnSegment.ILocationProperty
Syntax (vb)
Public Interface CfnSegment.ILocationProperty
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 locationProperty = new LocationProperty {
Country = new SetDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
GpsPoint = new GPSPointProperty {
Coordinates = new CoordinatesProperty {
Latitude = 123,
Longitude = 123
},
RangeInKilometers = 123
}
};
Synopsis
Properties
Country | The country or region code, in ISO 3166-1 alpha-2 format, for the segment. |
GpsPoint | The GPS point dimension for the segment. |
Properties
Country
The country or region code, in ISO 3166-1 alpha-2 format, for the segment.
object? Country { get; }
Property Value
Remarks
GpsPoint
The GPS point dimension for the segment.
object? GpsPoint { get; }