aws-cdk-lib.aws_networkmanager.CfnConnectPeer.ConnectPeerConfigurationProperty

interface ConnectPeerConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.NetworkManager.CfnConnectPeer.ConnectPeerConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnConnectPeer_ConnectPeerConfigurationProperty
Javasoftware.amazon.awscdk.services.networkmanager.CfnConnectPeer.ConnectPeerConfigurationProperty
Pythonaws_cdk.aws_networkmanager.CfnConnectPeer.ConnectPeerConfigurationProperty
TypeScript aws-cdk-lib » aws_networkmanager » CfnConnectPeer » ConnectPeerConfigurationProperty

Describes a core network Connect peer configuration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as networkmanager } from 'aws-cdk-lib';
const connectPeerConfigurationProperty: networkmanager.CfnConnectPeer.ConnectPeerConfigurationProperty = {
  bgpConfigurations: [{
    coreNetworkAddress: 'coreNetworkAddress',
    coreNetworkAsn: 123,
    peerAddress: 'peerAddress',
    peerAsn: 123,
  }],
  coreNetworkAddress: 'coreNetworkAddress',
  insideCidrBlocks: ['insideCidrBlocks'],
  peerAddress: 'peerAddress',
  protocol: 'protocol',
};

Properties

NameTypeDescription
bgpConfigurations?IResolvable | IResolvable | ConnectPeerBgpConfigurationProperty[]The Connect peer BGP configurations.
coreNetworkAddress?stringThe IP address of a core network.
insideCidrBlocks?string[]The inside IP addresses used for a Connect peer configuration.
peerAddress?stringThe IP address of the Connect peer.
protocol?stringThe protocol used for a Connect peer configuration.

bgpConfigurations?

Type: IResolvable | IResolvable | ConnectPeerBgpConfigurationProperty[] (optional)

The Connect peer BGP configurations.


coreNetworkAddress?

Type: string (optional)

The IP address of a core network.


insideCidrBlocks?

Type: string[] (optional)

The inside IP addresses used for a Connect peer configuration.


peerAddress?

Type: string (optional)

The IP address of the Connect peer.


protocol?

Type: string (optional)

The protocol used for a Connect peer configuration.