Show / Hide Table of Contents

Class CfnLinkProps

Properties for defining a CfnLink.

Inheritance
object
CfnLinkProps
Implements
ICfnLinkProps
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 CfnLinkProps : ICfnLinkProps
Syntax (vb)
Public Class CfnLinkProps Implements ICfnLinkProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.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 cfnLinkProps = new CfnLinkProps {
                 Bandwidth = new BandwidthProperty {
                     DownloadSpeed = 123,
                     UploadSpeed = 123
                 },
                 GlobalNetworkId = "globalNetworkId",
                 SiteId = "siteId",

                 // the properties below are optional
                 Description = "description",
                 Provider = "provider",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             };

Synopsis

Constructors

CfnLinkProps()

Properties for defining a CfnLink.

Properties

Bandwidth

The bandwidth for the link.

Description

A description of the link.

GlobalNetworkId

The ID of the global network.

Provider

The provider of the link.

SiteId

The ID of the site.

Tags

The tags for the link.

Type

The type of the link.

Constructors

CfnLinkProps()

Properties for defining a CfnLink.

public CfnLinkProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.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 cfnLinkProps = new CfnLinkProps {
                 Bandwidth = new BandwidthProperty {
                     DownloadSpeed = 123,
                     UploadSpeed = 123
                 },
                 GlobalNetworkId = "globalNetworkId",
                 SiteId = "siteId",

                 // the properties below are optional
                 Description = "description",
                 Provider = "provider",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             };

Properties

Bandwidth

The bandwidth for the link.

public object Bandwidth { get; set; }
Property Value

object

Remarks

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

Description

A description of the link.

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-link.html#cfn-networkmanager-link-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-link.html#cfn-networkmanager-link-globalnetworkid

Provider

The provider of the link.

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

string

Remarks

Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^

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

SiteId

The ID of the site.

public string SiteId { get; set; }
Property Value

string

Remarks

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

Tags

The tags for the link.

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

ICfnTag[]

Remarks

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

Type

The type of the link.

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

string

Remarks

Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^

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

Implements

ICfnLinkProps
Back to top Generated by DocFX