Show / Hide Table of Contents

Class CfnSiteProps

Properties for defining a CfnSite.

Inheritance
object
CfnSiteProps
Implements
ICfnSiteProps
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 CfnSiteProps : ICfnSiteProps
Syntax (vb)
Public Class CfnSiteProps Implements 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

Constructors

CfnSiteProps()

Properties for defining a CfnSite.

Properties

Description

A description of your site.

GlobalNetworkId

The ID of the global network.

Location

The site location.

Tags

The tags for the site.

Constructors

CfnSiteProps()

Properties for defining a CfnSite.

public CfnSiteProps()
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"
                 } }
             };

Properties

Description

A description of your site.

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

string

Remarks

Constraints: Maximum length of 256 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-description

GlobalNetworkId

The ID of the global network.

public string GlobalNetworkId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-globalnetworkid

Location

The site location.

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

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.

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

    Tags

    The tags for the site.

    public ICfnTag[]? Tags { get; set; }
    Property Value

    ICfnTag[]

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.html#cfn-networkmanager-site-tags

    Implements

    ICfnSiteProps
    Back to top Generated by DocFX