interface ConnectPeerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnConnectPeerPropsMixin.ConnectPeerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnConnectPeerPropsMixin_ConnectPeerConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnConnectPeerPropsMixin.ConnectPeerConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnConnectPeerPropsMixin.ConnectPeerConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnConnectPeerPropsMixin » 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 { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const connectPeerConfigurationProperty: networkmanager_mixins.CfnConnectPeerPropsMixin.ConnectPeerConfigurationProperty = {
bgpConfigurations: [{
coreNetworkAddress: 'coreNetworkAddress',
coreNetworkAsn: 123,
peerAddress: 'peerAddress',
peerAsn: 123,
}],
coreNetworkAddress: 'coreNetworkAddress',
insideCidrBlocks: ['insideCidrBlocks'],
peerAddress: 'peerAddress',
protocol: 'protocol',
};
Properties
| Name | Type | Description |
|---|---|---|
| bgp | IResolvable | (IResolvable | Connect)[] | The Connect peer BGP configurations. |
| 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. |
| protocol? | string | The protocol used for a Connect peer configuration. |
bgpConfigurations?
Type:
IResolvable | (IResolvable | Connect)[]
(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.

.NET
Go
Java
Python
TypeScript