interface ConnectPeerBgpConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.NetworkManager.CfnConnectPeer.ConnectPeerBgpConfigurationProperty | 
  Java | software.amazon.awscdk.services.networkmanager.CfnConnectPeer.ConnectPeerBgpConfigurationProperty | 
  Python | aws_cdk.aws_networkmanager.CfnConnectPeer.ConnectPeerBgpConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-networkmanager » CfnConnectPeer » 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 * as networkmanager from '@aws-cdk/aws-networkmanager';
const connectPeerBgpConfigurationProperty: networkmanager.CfnConnectPeer.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
 Java
 Python
 TypeScript