interface TransitGatewayAttachmentBgpConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayAttachmentBgpConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayConnectPeerPropsMixin_TransitGatewayAttachmentBgpConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayAttachmentBgpConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayAttachmentBgpConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayConnectPeerPropsMixin » TransitGatewayAttachmentBgpConfigurationProperty |
The BGP configuration information.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const transitGatewayAttachmentBgpConfigurationProperty: ec2_mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayAttachmentBgpConfigurationProperty = {
bgpStatus: 'bgpStatus',
peerAddress: 'peerAddress',
peerAsn: 123,
transitGatewayAddress: 'transitGatewayAddress',
transitGatewayAsn: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| bgp | string | The BGP status. |
| peer | string | The interior BGP peer IP address for the appliance. |
| peer | number | The peer Autonomous System Number (ASN). |
| transit | string | The interior BGP peer IP address for the transit gateway. |
| transit | number | The transit gateway Autonomous System Number (ASN). |
bgpStatus?
Type:
string
(optional)
The BGP status.
peerAddress?
Type:
string
(optional)
The interior BGP peer IP address for the appliance.
peerAsn?
Type:
number
(optional)
The peer Autonomous System Number (ASN).
transitGatewayAddress?
Type:
string
(optional)
The interior BGP peer IP address for the transit gateway.
transitGatewayAsn?
Type:
number
(optional)
The transit gateway Autonomous System Number (ASN).

.NET
Go
Java
Python
TypeScript