Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-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

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

object

Remarks

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

GpsPoint

The GPS point dimension for the segment.

object? GpsPoint { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX