Interface CfnTransitGatewayConnectPeerMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:58.703Z") @Stability(Stable) public interface CfnTransitGatewayConnectPeerMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnTransitGatewayConnectPeerPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 CfnTransitGatewayConnectPeerMixinProps cfnTransitGatewayConnectPeerMixinProps = CfnTransitGatewayConnectPeerMixinProps.builder()
         .connectPeerConfiguration(TransitGatewayConnectPeerConfigurationProperty.builder()
                 .bgpConfigurations(List.of(TransitGatewayAttachmentBgpConfigurationProperty.builder()
                         .bgpStatus("bgpStatus")
                         .peerAddress("peerAddress")
                         .peerAsn(123)
                         .transitGatewayAddress("transitGatewayAddress")
                         .transitGatewayAsn(123)
                         .build()))
                 .insideCidrBlocks(List.of("insideCidrBlocks"))
                 .peerAddress("peerAddress")
                 .protocol("protocol")
                 .transitGatewayAddress("transitGatewayAddress")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .transitGatewayAttachmentId("transitGatewayAttachmentId")
         .build();
 

See Also: