@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.641Z") @Stability(value=Stable) public interface CfnConnectionProps 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.*;
Object connectionProperties;
CfnConnectionProps cfnConnectionProps = CfnConnectionProps.builder()
.catalogId("catalogId")
.connectionInput(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())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectionProps.Builder
A builder for
CfnConnectionProps |
static class |
CfnConnectionProps.Jsii$Proxy
An implementation for
CfnConnectionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectionProps.Builder |
builder() |
String |
getCatalogId()
`AWS::Glue::Connection.CatalogId`.
|
Object |
getConnectionInput()
`AWS::Glue::Connection.ConnectionInput`.
|
@Stability(value=Stable) @NotNull String getCatalogId()
@Stability(value=Stable) @NotNull Object getConnectionInput()
@Stability(value=Stable) static CfnConnectionProps.Builder builder()
CfnConnectionProps.Builder of CfnConnectionPropsCopyright © 2021. All rights reserved.