Show / Hide Table of Contents

Class CfnSegment.LocationProperty

Specifies location-based criteria, such as region or GPS coordinates, for the segment.

Inheritance
System.Object
CfnSegment.LocationProperty
Implements
CfnSegment.ILocationProperty
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.AWS.Pinpoint.dll
Syntax (csharp)
public class LocationProperty : Object, CfnSegment.ILocationProperty
Syntax (vb)
Public Class LocationProperty
    Inherits Object
    Implements CfnSegment.ILocationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location.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 locationProperty = new LocationProperty {
    Country = new SetDimensionProperty {
        DimensionType = "dimensionType",
        Values = new [] { "values" }
    },
    GpsPoint = new GPSPointProperty {
        Coordinates = new CoordinatesProperty {
            Latitude = 123,
            Longitude = 123
        },
        RangeInKilometers = 123
    }
};

Synopsis

Constructors

LocationProperty()

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.

Constructors

LocationProperty()

public LocationProperty()

Properties

Country

The country or region code, in ISO 3166-1 alpha-2 format, for the segment.

public object Country { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location.html#cfn-pinpoint-segment-segmentdimensions-location-country

GpsPoint

The GPS point dimension for the segment.

public object GpsPoint { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location.html#cfn-pinpoint-segment-segmentdimensions-location-gpspoint

Implements

CfnSegment.ILocationProperty
Back to top Generated by DocFX