interface CfnConnectPeerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnConnectPeerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnConnectPeerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnConnectPeerMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnConnectPeerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnConnectPeerMixinProps |
Properties for CfnConnectPeerPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const cfnConnectPeerMixinProps: networkmanager_mixins.CfnConnectPeerMixinProps = {
bgpOptions: {
peerAsn: 123,
},
connectAttachmentId: 'connectAttachmentId',
coreNetworkAddress: 'coreNetworkAddress',
insideCidrBlocks: ['insideCidrBlocks'],
peerAddress: 'peerAddress',
subnetArn: 'subnetArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| bgp | IResolvable | Bgp | Describes the BGP options. |
| connect | string | The ID of the attachment to connect. |
| core | string | The IP address of a core network. |
| inside | string[] | The inside IP addresses used for a Connect peer configuration. |
| peer | string | The IP address of the Connect peer. |
| subnet | string | The subnet ARN of the Connect peer. |
| tags? | Cfn[] | The list of key-value tags associated with the Connect peer. |
bgpOptions?
Type:
IResolvable | Bgp
(optional)
Describes the BGP options.
connectAttachmentId?
Type:
string
(optional)
The ID of the attachment to connect.
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.
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