Interface CfnPrivateConnectionPropsMixin.ServiceManagedModeProperty

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

@Stability(Stable) public static interface CfnPrivateConnectionPropsMixin.ServiceManagedModeProperty extends software.amazon.jsii.JsiiSerializable
Configuration for a service-managed Private Connection.

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.*;
 ServiceManagedModeProperty serviceManagedModeProperty = ServiceManagedModeProperty.builder()
         .hostAddress("hostAddress")
         .ipAddressType("ipAddressType")
         .ipv4AddressesPerEni(123)
         .portRanges(List.of("portRanges"))
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         .build();
 

See Also: