interface BgpPeerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectConnect.Mixins.CfnTransitVirtualInterfacePropsMixin.BgpPeerProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectconnect/mixins#CfnTransitVirtualInterfacePropsMixin_BgpPeerProperty |
Java | software.amazon.awscdk.mixins.preview.services.directconnect.mixins.CfnTransitVirtualInterfacePropsMixin.BgpPeerProperty |
Python | aws_cdk.mixins_preview.aws_directconnect.mixins.CfnTransitVirtualInterfacePropsMixin.BgpPeerProperty |
TypeScript | @aws-cdk/mixins-preview » aws_directconnect » mixins » CfnTransitVirtualInterfacePropsMixin » BgpPeerProperty |
A key-value pair to associate with a resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as directconnect_mixins } from '@aws-cdk/mixins-preview/aws-directconnect';
const bgpPeerProperty: directconnect_mixins.CfnTransitVirtualInterfacePropsMixin.BgpPeerProperty = {
addressFamily: 'addressFamily',
amazonAddress: 'amazonAddress',
asn: 'asn',
authKey: 'authKey',
bgpPeerId: 'bgpPeerId',
customerAddress: 'customerAddress',
};
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The address family for the BGP peer. |
| amazon | string | The IP address assigned to the Amazon interface. |
| asn? | string | The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. |
| auth | string | The authentication key for BGP configuration. |
| bgp | string | |
| customer | string | The IP address assigned to the customer interface. |
addressFamily?
Type:
string
(optional)
The address family for the BGP peer.
amazonAddress?
Type:
string
(optional)
The IP address assigned to the Amazon interface.
asn?
Type:
string
(optional)
The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
authKey?
Type:
string
(optional)
The authentication key for BGP configuration.
This string has a minimum length of 6 characters and and a maximum length of 80 characters.
bgpPeerId?
Type:
string
(optional)
customerAddress?
Type:
string
(optional)
The IP address assigned to the customer interface.

.NET
Go
Java
Python
TypeScript