Interface CfnConnectPeer.ConnectPeerConfigurationProperty

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

@Stability(Stable) public static interface CfnConnectPeer.ConnectPeerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes a core network Connect peer 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.*;
 ConnectPeerConfigurationProperty connectPeerConfigurationProperty = ConnectPeerConfigurationProperty.builder()
         .bgpConfigurations(List.of(ConnectPeerBgpConfigurationProperty.builder()
                 .coreNetworkAddress("coreNetworkAddress")
                 .coreNetworkAsn(123)
                 .peerAddress("peerAddress")
                 .peerAsn(123)
                 .build()))
         .coreNetworkAddress("coreNetworkAddress")
         .insideCidrBlocks(List.of("insideCidrBlocks"))
         .peerAddress("peerAddress")
         .protocol("protocol")
         .build();