Interface CfnPrivateConnectionPropsMixin.ConnectionConfigurationProperty

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

@Stability(Stable) public static interface CfnPrivateConnectionPropsMixin.ConnectionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 ConnectionConfigurationProperty connectionConfigurationProperty = 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();
 

See Also: