interface CfnConnectPeerProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NetworkManager.CfnConnectPeerProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnConnectPeerProps |
Java | software.amazon.awscdk.services.networkmanager.CfnConnectPeerProps |
Python | aws_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'],
subnetArn: 'subnetArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connect | string | The ID of the attachment to connect. |
| peer | string | The IP address of the Connect peer. |
| bgp | IResolvable | Bgp | Describes the BGP options. |
| core | string | The IP address of a core network. |
| inside | string[] | The inside IP addresses used for a Connect peer configuration. |
| subnet | string | The subnet ARN of the Connect peer. |
| tags? | Cfn[] | 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 | Bgp
(optional)
Describes the BGP options.
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.
subnetArn?
Type:
string
(optional)
The subnet ARN of the Connect peer.
tags?
Type:
Cfn[]
(optional)
The list of key-value tags associated with the Connect peer.

.NET
Go
Java
Python
TypeScript