aws-cdk-lib.aws_networkmanager.CfnConnectPeerProps

interface CfnConnectPeerProps

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

Properties for defining a CfnConnectPeer.

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 cfnConnectPeerProps: networkmanager.CfnConnectPeerProps = {
  connectAttachmentId: 'connectAttachmentId',
  peerAddress: 'peerAddress',

  // the properties below are optional
  bgpOptions: {
    peerAsn: 123,
  },
  coreNetworkAddress: 'coreNetworkAddress',
  insideCidrBlocks: ['insideCidrBlocks'],
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
connectAttachmentIdstringThe ID of the attachment to connect.
peerAddressstringThe IP address of the Connect peer.
bgpOptions?IResolvable | BgpOptionsPropertyAWS::NetworkManager::ConnectPeer.BgpOptions.
coreNetworkAddress?stringThe IP address of a core network.
insideCidrBlocks?string[]The inside IP addresses used for a Connect peer configuration.
tags?CfnTag[]The list of key-value tags associated with the Connect peer.

connectAttachmentId

Type: string

The ID of the attachment to connect.


peerAddress

Type: string

The IP address of the Connect peer.


bgpOptions?

Type: IResolvable | BgpOptionsProperty (optional)

AWS::NetworkManager::ConnectPeer.BgpOptions.


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.


tags?

Type: CfnTag[] (optional)

The list of key-value tags associated with the Connect peer.