Show / Hide Table of Contents

Class CfnSegmentPropsMixin.LocationProperty

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

Inheritance
object
CfnSegmentPropsMixin.LocationProperty
Implements
CfnSegmentPropsMixin.ILocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSegmentPropsMixin.LocationProperty : CfnSegmentPropsMixin.ILocationProperty
Syntax (vb)
Public Class CfnSegmentPropsMixin.LocationProperty Implements CfnSegmentPropsMixin.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.Mixins.Preview.AWS.Pinpoint.Mixins;

             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()

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

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()

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

public LocationProperty()
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.Mixins.Preview.AWS.Pinpoint.Mixins;

             var locationProperty = new LocationProperty {
                 Country = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 GpsPoint = new GPSPointProperty {
                     Coordinates = new CoordinatesProperty {
                         Latitude = 123,
                         Longitude = 123
                     },
                     RangeInKilometers = 123
                 }
             };

Properties

Country

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

public object? Country { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnSegmentPropsMixin.ISetDimensionProperty

GpsPoint

The GPS point dimension for the segment.

public object? GpsPoint { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnSegmentPropsMixin.IGPSPointProperty

Implements

CfnSegmentPropsMixin.ILocationProperty
Back to top Generated by DocFX