@Stability(value=Stable)
public static interface CfnConnection.ConnectionInputProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
Object connectionProperties;
ConnectionInputProperty connectionInputProperty = ConnectionInputProperty.builder()
.connectionType("connectionType")
// the properties below are optional
.connectionProperties(connectionProperties)
.description("description")
.matchCriteria(List.of("matchCriteria"))
.name("name")
.physicalConnectionRequirements(PhysicalConnectionRequirementsProperty.builder()
.availabilityZone("availabilityZone")
.securityGroupIdList(List.of("securityGroupIdList"))
.subnetId("subnetId")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnection.ConnectionInputProperty.Builder
A builder for
CfnConnection.ConnectionInputProperty |
static class |
CfnConnection.ConnectionInputProperty.Jsii$Proxy
An implementation for
CfnConnection.ConnectionInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnection.ConnectionInputProperty.Builder |
builder() |
default Object |
getConnectionProperties()
`CfnConnection.ConnectionInputProperty.ConnectionProperties`.
|
String |
getConnectionType()
`CfnConnection.ConnectionInputProperty.ConnectionType`.
|
default String |
getDescription()
`CfnConnection.ConnectionInputProperty.Description`.
|
default List<String> |
getMatchCriteria()
`CfnConnection.ConnectionInputProperty.MatchCriteria`.
|
default String |
getName()
`CfnConnection.ConnectionInputProperty.Name`.
|
default Object |
getPhysicalConnectionRequirements()
`CfnConnection.ConnectionInputProperty.PhysicalConnectionRequirements`.
|
@Stability(value=Stable) @Nullable default Object getConnectionProperties()
@Stability(value=Stable) @NotNull String getConnectionType()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<String> getMatchCriteria()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getPhysicalConnectionRequirements()
@Stability(value=Stable) static CfnConnection.ConnectionInputProperty.Builder builder()
Copyright © 2021. All rights reserved.