interface ConnectPeerBgpConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnConnectPeerPropsMixin.ConnectPeerBgpConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnConnectPeerPropsMixin_ConnectPeerBgpConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnConnectPeerPropsMixin.ConnectPeerBgpConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnConnectPeerPropsMixin.ConnectPeerBgpConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnConnectPeerPropsMixin » ConnectPeerBgpConfigurationProperty |
Describes a core network BGP 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 connectPeerBgpConfigurationProperty: networkmanager_mixins.CfnConnectPeerPropsMixin.ConnectPeerBgpConfigurationProperty = {
coreNetworkAddress: 'coreNetworkAddress',
coreNetworkAsn: 123,
peerAddress: 'peerAddress',
peerAsn: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| core | string | The address of a core network. |
| core | number | The ASN of the Coret Network. |
| peer | string | The address of a core network Connect peer. |
| peer | number | The ASN of the Connect peer. |
coreNetworkAddress?
Type:
string
(optional)
The address of a core network.
coreNetworkAsn?
Type:
number
(optional)
The ASN of the Coret Network.
peerAddress?
Type:
string
(optional)
The address of a core network Connect peer.
peerAsn?
Type:
number
(optional)
The ASN of the Connect peer.

.NET
Go
Java
Python
TypeScript