Interface CfnTransitGatewayConnectPeer.TransitGatewayConnectPeerConfigurationProperty

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

@Stability(Stable) public static interface CfnTransitGatewayConnectPeer.TransitGatewayConnectPeerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the Connect peer details.

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.*;
 TransitGatewayConnectPeerConfigurationProperty transitGatewayConnectPeerConfigurationProperty = TransitGatewayConnectPeerConfigurationProperty.builder()
         .insideCidrBlocks(List.of("insideCidrBlocks"))
         .peerAddress("peerAddress")
         // the properties below are optional
         .bgpConfigurations(List.of(TransitGatewayAttachmentBgpConfigurationProperty.builder()
                 .bgpStatus("bgpStatus")
                 .peerAddress("peerAddress")
                 .peerAsn(123)
                 .transitGatewayAddress("transitGatewayAddress")
                 .transitGatewayAsn(123)
                 .build()))
         .protocol("protocol")
         .transitGatewayAddress("transitGatewayAddress")
         .build();
 

See Also: