Interface CfnPrivateConnection.ConnectionConfigurationProperty

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

@Stability(Stable) public static interface CfnPrivateConnection.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.services.devopsagent.*;
 ConnectionConfigurationProperty connectionConfigurationProperty = ConnectionConfigurationProperty.builder()
         .selfManaged(SelfManagedModeProperty.builder()
                 .resourceConfigurationId("resourceConfigurationId")
                 .build())
         .serviceManaged(ServiceManagedModeProperty.builder()
                 .hostAddress("hostAddress")
                 .vpcId("vpcId")
                 // the properties below are optional
                 .ipAddressType("ipAddressType")
                 .ipv4AddressesPerEni(123)
                 .portRanges(List.of("portRanges"))
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 

See Also: