Interface CfnConnectPeer.ConnectPeerBgpConfigurationProperty

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

@Stability(Stable) public static interface CfnConnectPeer.ConnectPeerBgpConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.networkmanager.*;
 ConnectPeerBgpConfigurationProperty connectPeerBgpConfigurationProperty = ConnectPeerBgpConfigurationProperty.builder()
         .coreNetworkAddress("coreNetworkAddress")
         .coreNetworkAsn(123)
         .peerAddress("peerAddress")
         .peerAsn(123)
         .build();
 

See Also: