Show / Hide Table of Contents

Class CfnRecordSetGroup.CoordinatesProperty

A complex type that lists the coordinates for a geoproximity resource record.

Inheritance
object
CfnRecordSetGroup.CoordinatesProperty
Implements
CfnRecordSetGroup.ICoordinatesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRecordSetGroup.CoordinatesProperty : CfnRecordSetGroup.ICoordinatesProperty
Syntax (vb)
Public Class CfnRecordSetGroup.CoordinatesProperty Implements CfnRecordSetGroup.ICoordinatesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-coordinates.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.Route53;

             var coordinatesProperty = new CoordinatesProperty {
                 Latitude = "latitude",
                 Longitude = "longitude"
             };

Synopsis

Constructors

CoordinatesProperty()

A complex type that lists the coordinates for a geoproximity resource record.

Properties

Latitude

Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).

Longitude

Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).

Constructors

CoordinatesProperty()

A complex type that lists the coordinates for a geoproximity resource record.

public CoordinatesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-coordinates.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.Route53;

             var coordinatesProperty = new CoordinatesProperty {
                 Latitude = "latitude",
                 Longitude = "longitude"
             };

Properties

Latitude

Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).

public string Latitude { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-coordinates.html#cfn-route53-recordsetgroup-coordinates-latitude

Longitude

Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).

public string Longitude { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-coordinates.html#cfn-route53-recordsetgroup-coordinates-longitude

Implements

CfnRecordSetGroup.ICoordinatesProperty
Back to top Generated by DocFX