Class CfnConnectPeer.ConnectPeerConfigurationProperty
Describes a core network Connect peer configuration.
Inheritance
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ConnectPeerConfigurationProperty : Object, CfnConnectPeer.IConnectPeerConfigurationProperty
Syntax (vb)
Public Class ConnectPeerConfigurationProperty
Inherits Object
Implements CfnConnectPeer.IConnectPeerConfigurationProperty
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 connectPeerConfigurationProperty = new ConnectPeerConfigurationProperty {
BgpConfigurations = new [] { new ConnectPeerBgpConfigurationProperty {
CoreNetworkAddress = "coreNetworkAddress",
CoreNetworkAsn = 123,
PeerAddress = "peerAddress",
PeerAsn = 123
} },
CoreNetworkAddress = "coreNetworkAddress",
InsideCidrBlocks = new [] { "insideCidrBlocks" },
PeerAddress = "peerAddress",
Protocol = "protocol"
};
Synopsis
Constructors
Connect |
Properties
Bgp |
The Connect peer BGP configurations. |
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. |
Protocol | The protocol used for a Connect peer configuration. |
Constructors
ConnectPeerConfigurationProperty()
public ConnectPeerConfigurationProperty()
Properties
BgpConfigurations
The Connect peer BGP configurations.
public object BgpConfigurations { 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
Protocol
The protocol used for a Connect peer configuration.
public string Protocol { get; set; }
Property Value
System.