interface CfnConnectPeerProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.NetworkManager.CfnConnectPeerProps |
![]() | software.amazon.awscdk.services.networkmanager.CfnConnectPeerProps |
![]() | aws_cdk.aws_networkmanager.CfnConnectPeerProps |
![]() | @aws-cdk/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 * as networkmanager from '@aws-cdk/aws-networkmanager';
const cfnConnectPeerProps: networkmanager.CfnConnectPeerProps = {
connectAttachmentId: 'connectAttachmentId',
insideCidrBlocks: ['insideCidrBlocks'],
peerAddress: 'peerAddress',
// the properties below are optional
bgpOptions: {
peerAsn: 123,
},
coreNetworkAddress: 'coreNetworkAddress',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
connect | string | The ID of the attachment to connect. |
inside | string[] | The inside IP addresses used for a Connect peer configuration. |
peer | string | The IP address of the Connect peer. |
bgp | IResolvable | Bgp | AWS::NetworkManager::ConnectPeer.BgpOptions . |
core | string | The IP address of a core network. |
tags? | Cfn [] | The list of key-value tags associated with the Connect peer. |
connectAttachmentId
Type:
string
The ID of the attachment to connect.
insideCidrBlocks
Type:
string[]
The inside IP addresses used for a Connect peer configuration.
peerAddress
Type:
string
The IP address of the Connect peer.
bgpOptions?
Type:
IResolvable
|
Bgp
(optional)
AWS::NetworkManager::ConnectPeer.BgpOptions
.
coreNetworkAddress?
Type:
string
(optional)
The IP address of a core network.
tags?
Type:
Cfn
[]
(optional)
The list of key-value tags associated with the Connect peer.