Interface ICfnSiteProps
Properties for defining a CfnSite
.
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSiteProps
Syntax (vb)
Public Interface ICfnSiteProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.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 cfnSiteProps = new CfnSiteProps {
GlobalNetworkId = "globalNetworkId",
// the properties below are optional
Description = "description",
Location = new LocationProperty {
Address = "address",
Latitude = "latitude",
Longitude = "longitude"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | A description of your site. |
GlobalNetworkId | The ID of the global network. |
Location | The site location. |
Tags | The tags for the site. |
Properties
Description
A description of your site.
virtual string Description { get; }
Property Value
System.String
Remarks
Constraints: Maximum length of 256 characters.
GlobalNetworkId
The ID of the global network.
string GlobalNetworkId { get; }
Property Value
System.String
Remarks
Location
The site location.
virtual object Location { get; }
Property Value
System.Object
Remarks
This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated.