@Stability(value=Stable)
public static interface CfnConnection.PhysicalConnectionRequirementsProperty
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.glue.*;
PhysicalConnectionRequirementsProperty physicalConnectionRequirementsProperty = PhysicalConnectionRequirementsProperty.builder()
.availabilityZone("availabilityZone")
.securityGroupIdList(List.of("securityGroupIdList"))
.subnetId("subnetId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnection.PhysicalConnectionRequirementsProperty.Builder
A builder for
CfnConnection.PhysicalConnectionRequirementsProperty |
static class |
CfnConnection.PhysicalConnectionRequirementsProperty.Jsii$Proxy
An implementation for
CfnConnection.PhysicalConnectionRequirementsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnection.PhysicalConnectionRequirementsProperty.Builder |
builder() |
default String |
getAvailabilityZone()
The connection's Availability Zone.
|
default List<String> |
getSecurityGroupIdList()
The security group ID list used by the connection.
|
default String |
getSubnetId()
The subnet ID used by the connection.
|
@Stability(value=Stable) @Nullable default String getAvailabilityZone()
This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIdList()
@Stability(value=Stable) @Nullable default String getSubnetId()
@Stability(value=Stable) static CfnConnection.PhysicalConnectionRequirementsProperty.Builder builder()
Copyright © 2022. All rights reserved.