Show / Hide Table of Contents

Class CfnConnectPeer.ConnectPeerConfigurationProperty

Describes a core network Connect peer configuration.

Inheritance
object
CfnConnectPeer.ConnectPeerConfigurationProperty
Implements
CfnConnectPeer.IConnectPeerConfigurationProperty
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 CfnConnectPeer.ConnectPeerConfigurationProperty : CfnConnectPeer.IConnectPeerConfigurationProperty
Syntax (vb)
Public Class CfnConnectPeer.ConnectPeerConfigurationProperty Implements CfnConnectPeer.IConnectPeerConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-connectpeer-connectpeerconfiguration.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-connectpeer-connectpeerconfiguration.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 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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-connectpeer-connectpeerconfiguration.html#cfn-networkmanager-connectpeer-connectpeerconfiguration-bgpconfigurations

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-properties-networkmanager-connectpeer-connectpeerconfiguration.html#cfn-networkmanager-connectpeer-connectpeerconfiguration-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-properties-networkmanager-connectpeer-connectpeerconfiguration.html#cfn-networkmanager-connectpeer-connectpeerconfiguration-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-properties-networkmanager-connectpeer-connectpeerconfiguration.html#cfn-networkmanager-connectpeer-connectpeerconfiguration-peeraddress

Protocol

The protocol used for a Connect peer configuration.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-connectpeer-connectpeerconfiguration.html#cfn-networkmanager-connectpeer-connectpeerconfiguration-protocol

Implements

CfnConnectPeer.IConnectPeerConfigurationProperty
Back to top Generated by DocFX