Interface CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty.Jsii$Proxy
- Enclosing class:
CfnConnectionPropsMixin
@Stability(Stable)
public static interface CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty
extends software.amazon.jsii.JsiiSerializable
Physical connection requirements of a 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.datazone.*;
PhysicalConnectionRequirementsProperty physicalConnectionRequirementsProperty = PhysicalConnectionRequirementsProperty.builder()
.availabilityZone("availabilityZone")
.securityGroupIdList(List.of("securityGroupIdList"))
.subnetId("subnetId")
.subnetIdList(List.of("subnetIdList"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe availability zone of the physical connection requirements of a connection.The group ID list of the physical connection requirements of a connection.default StringThe subnet ID of the physical connection requirements of a connection.The subnet ID list of the physical connection requirements of a connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
The availability zone of the physical connection requirements of a connection.- See Also:
-
getSecurityGroupIdList
The group ID list of the physical connection requirements of a connection.- See Also:
-
getSubnetId
The subnet ID of the physical connection requirements of a connection.- See Also:
-
getSubnetIdList
The subnet ID list of the physical connection requirements of a connection.- See Also:
-
builder
@Stability(Stable) static CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty.Builder builder()
-