@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.528Z") @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()
The ID of the data catalog to create the catalog object in.
|
Object |
getConnectionInput()
The connection that you want to create.
|
@Stability(value=Stable) @NotNull String getCatalogId()
Currently, this should be the AWS account ID.
To specify the account ID, you can use the
Refintrinsic function with theAWS::AccountIdpseudo parameter. For example:!Ref AWS::AccountId.
@Stability(value=Stable) @NotNull Object getConnectionInput()
@Stability(value=Stable) static CfnConnectionProps.Builder builder()
CfnConnectionProps.Builder of CfnConnectionPropsCopyright © 2022. All rights reserved.