Show / Hide Table of Contents

Class CfnSite.LocationProperty

Describes a location.

Inheritance
object
CfnSite.LocationProperty
Implements
CfnSite.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.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSite.LocationProperty : CfnSite.ILocationProperty
Syntax (vb)
Public Class CfnSite.LocationProperty Implements CfnSite.ILocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-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.NetworkManager;

             var locationProperty = new LocationProperty {
                 Address = "address",
                 Latitude = "latitude",
                 Longitude = "longitude"
             };

Synopsis

Constructors

LocationProperty()

Describes a location.

Properties

Address

The physical address.

Latitude

The latitude.

Longitude

The longitude.

Constructors

LocationProperty()

Describes a location.

public LocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-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.NetworkManager;

             var locationProperty = new LocationProperty {
                 Address = "address",
                 Latitude = "latitude",
                 Longitude = "longitude"
             };

Properties

Address

The physical address.

public string? Address { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-address

Latitude

The latitude.

public string? Latitude { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-latitude

Longitude

The longitude.

public string? Longitude { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-site-location.html#cfn-networkmanager-site-location-longitude

Implements

CfnSite.ILocationProperty
Back to top Generated by DocFX