Interface CfnTransitGatewayConnectPeerProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTransitGatewayConnectPeerProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:30.321Z") @Stability(Stable) public interface CfnTransitGatewayConnectPeerProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnTransitGatewayConnectPeer.

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.*;
 CfnTransitGatewayConnectPeerProps cfnTransitGatewayConnectPeerProps = CfnTransitGatewayConnectPeerProps.builder()
         .connectPeerConfiguration(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())
         .transitGatewayAttachmentId("transitGatewayAttachmentId")
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: