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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrivateConnection.ConnectionConfigurationPropertystatic final classAn implementation forCfnPrivateConnection.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
IResolvableorCfnPrivateConnection.SelfManagedModeProperty- See Also:
-
getServiceManaged
Configuration for a service-managed Private Connection.Returns union: either
IResolvableorCfnPrivateConnection.ServiceManagedModeProperty- See Also:
-
builder
-