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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPrivateConnectionPropsMixin.ConnectionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSelfManaged
Configuration for a self-managed Private Connection.Returns union: either
IResolvableorCfnPrivateConnectionPropsMixin.SelfManagedModeProperty- See Also:
-
getServiceManaged
Configuration for a service-managed Private Connection.Returns union: either
IResolvableorCfnPrivateConnectionPropsMixin.ServiceManagedModeProperty- See Also:
-
builder
@Stability(Stable) static CfnPrivateConnectionPropsMixin.ConnectionConfigurationProperty.Builder builder()
-