Interface CfnSite.ILocationProperty
Describes a location.
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILocationProperty
Syntax (vb)
Public Interface ILocationProperty
Remarks
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
Properties
Address | The physical address. |
Latitude | The latitude. |
Longitude | The longitude. |
Properties
Address
The physical address.
virtual string Address { get; }
Property Value
System.String
Remarks
Latitude
The latitude.
virtual string Latitude { get; }
Property Value
System.String
Remarks
Longitude
The longitude.
virtual string Longitude { get; }
Property Value
System.String