Show / Hide Table of Contents

Class CfnConnectPeerProps

Properties for defining a CfnConnectPeer.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectpeer.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 cfnConnectPeerProps = new CfnConnectPeerProps {
                 ConnectAttachmentId = "connectAttachmentId",
                 PeerAddress = "peerAddress",

                 // the properties below are optional
                 BgpOptions = new BgpOptionsProperty {
                     PeerAsn = 123
                 },
                 CoreNetworkAddress = "coreNetworkAddress",
                 InsideCidrBlocks = new [] { "insideCidrBlocks" },
                 SubnetArn = "subnetArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnConnectPeerProps()

Properties for defining a CfnConnectPeer.

Properties

BgpOptions

Describes the BGP options.

ConnectAttachmentId

The ID of the attachment to connect.

CoreNetworkAddress

The IP address of a core network.

InsideCidrBlocks

The inside IP addresses used for a Connect peer configuration.

PeerAddress

The IP address of the Connect peer.

SubnetArn

The subnet ARN of the Connect peer.

Tags

The list of key-value tags associated with the Connect peer.

Constructors

CfnConnectPeerProps()

Properties for defining a CfnConnectPeer.

public CfnConnectPeerProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectpeer.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 cfnConnectPeerProps = new CfnConnectPeerProps {
                 ConnectAttachmentId = "connectAttachmentId",
                 PeerAddress = "peerAddress",

                 // the properties below are optional
                 BgpOptions = new BgpOptionsProperty {
                     PeerAsn = 123
                 },
                 CoreNetworkAddress = "coreNetworkAddress",
                 InsideCidrBlocks = new [] { "insideCidrBlocks" },
                 SubnetArn = "subnetArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

BgpOptions

Describes the BGP options.

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

object

Remarks

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

ConnectAttachmentId

The ID of the attachment to connect.

public string ConnectAttachmentId { get; set; }
Property Value

string

Remarks

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

CoreNetworkAddress

The IP address of a core network.

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

string

Remarks

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

InsideCidrBlocks

The inside IP addresses used for a Connect peer configuration.

public string[]? InsideCidrBlocks { get; set; }
Property Value

string[]

Remarks

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

PeerAddress

The IP address of the Connect peer.

public string PeerAddress { get; set; }
Property Value

string

Remarks

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

SubnetArn

The subnet ARN of the Connect peer.

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

string

Remarks

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

Tags

The list of key-value tags associated with the Connect peer.

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

ICfnTag[]

Remarks

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

Implements

ICfnConnectPeerProps
Back to top Generated by DocFX