Class CfnConnectPeer.ConnectPeerConfigurationProperty
Describes a core network Connect peer configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnectPeer.ConnectPeerConfigurationProperty : CfnConnectPeer.IConnectPeerConfigurationProperty
Syntax (vb)
Public Class CfnConnectPeer.ConnectPeerConfigurationProperty 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
ConnectPeerConfigurationProperty() | Describes a core network Connect peer configuration. |
Properties
BgpConfigurations | The Connect peer BGP configurations. |
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. |
Protocol | The protocol used for a Connect peer configuration. |
Constructors
ConnectPeerConfigurationProperty()
Describes a core network Connect peer configuration.
public ConnectPeerConfigurationProperty()
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"
};
Properties
BgpConfigurations
The Connect peer BGP configurations.
public object? BgpConfigurations { get; set; }
Property Value
Remarks
CoreNetworkAddress
The IP address of a core network.
public string? CoreNetworkAddress { get; set; }
Property Value
Remarks
InsideCidrBlocks
The inside IP addresses used for a Connect peer configuration.
public string[]? InsideCidrBlocks { get; set; }
Property Value
string[]
Remarks
PeerAddress
The IP address of the Connect peer.
public string? PeerAddress { get; set; }
Property Value
Remarks
Protocol
The protocol used for a Connect peer configuration.
public string? Protocol { get; set; }