Interface CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTransitGatewayConnectPeer

@Stability(Stable) public static interface CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
 TransitGatewayAttachmentBgpConfigurationProperty transitGatewayAttachmentBgpConfigurationProperty = TransitGatewayAttachmentBgpConfigurationProperty.builder()
         .bgpStatus("bgpStatus")
         .peerAddress("peerAddress")
         .peerAsn(123)
         .transitGatewayAddress("transitGatewayAddress")
         .transitGatewayAsn(123)
         .build();
 

See Also: