Interface CfnConnectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:31.867Z")
@Stability(Stable)
public interface CfnConnectionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConnection
.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectionProps
static final class
An implementation forCfnConnectionProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConnectionProps.Builder
builder()
The ID of the data catalog to create the catalog object in.The connection that you want to create.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The ID of the data catalog to create the catalog object in.Currently, this should be the AWS account ID.
To specify the account ID, you can use the
Ref
intrinsic function with theAWS::AccountId
pseudo parameter. For example:!Ref AWS::AccountId
.- See Also:
-
getConnectionInput
The connection that you want to create.- See Also:
-
builder
- Returns:
- a
CfnConnectionProps.Builder
ofCfnConnectionProps
-