Interface CfnPrivateConnectionMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-24T20:29:43.472Z") @Stability(Stable) public interface CfnPrivateConnectionMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnPrivateConnectionPropsMixin.

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.devopsagent.*;
 CfnPrivateConnectionMixinProps cfnPrivateConnectionMixinProps = CfnPrivateConnectionMixinProps.builder()
         .certificate("certificate")
         .connectionConfiguration(ConnectionConfigurationProperty.builder()
                 .selfManaged(SelfManagedModeProperty.builder()
                         .resourceConfigurationId("resourceConfigurationId")
                         .build())
                 .serviceManaged(ServiceManagedModeProperty.builder()
                         .hostAddress("hostAddress")
                         .ipAddressType("ipAddressType")
                         .ipv4AddressesPerEni(123)
                         .portRanges(List.of("portRanges"))
                         .securityGroupIds(List.of("securityGroupIds"))
                         .subnetIds(List.of("subnetIds"))
                         .vpcId("vpcId")
                         .build())
                 .build())
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: