Class CfnConnectPeerProps
Properties for defining a CfnConnectPeer
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnectPeerProps : Object, ICfnConnectPeerProps
Syntax (vb)
Public Class CfnConnectPeerProps
Inherits Object
Implements ICfnConnectPeerProps
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 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
Cfn |
Properties
Bgp |
Describes the BGP options. |
Connect |
The ID of the attachment to connect. |
Core |
The IP address of a core network. |
Inside |
The inside IP addresses used for a Connect peer configuration. |
Peer |
The IP address of the Connect peer. |
Subnet |
The subnet ARN of the Connect peer. |
Tags | The list of key-value tags associated with the Connect peer. |
Constructors
CfnConnectPeerProps()
public CfnConnectPeerProps()
Properties
BgpOptions
Describes the BGP options.
public object BgpOptions { get; set; }
Property Value
System.
Remarks
ConnectAttachmentId
The ID of the attachment to connect.
public string ConnectAttachmentId { get; set; }
Property Value
System.
Remarks
CoreNetworkAddress
The IP address of a core network.
public string CoreNetworkAddress { get; set; }
Property Value
System.
Remarks
InsideCidrBlocks
The inside IP addresses used for a Connect peer configuration.
public string[] InsideCidrBlocks { get; set; }
Property Value
System.
Remarks
PeerAddress
The IP address of the Connect peer.
public string PeerAddress { get; set; }
Property Value
System.
Remarks
SubnetArn
The subnet ARN of the Connect peer.
public string SubnetArn { get; set; }
Property Value
System.
Remarks
Tags
The list of key-value tags associated with the Connect peer.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn