Interface ConnectionProps
- All Superinterfaces:
ConnectionOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ConnectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.009Z")
@Stability(Deprecated)
@Deprecated
public interface ConnectionProps
extends software.amazon.jsii.JsiiSerializable, ConnectionOptions
Deprecated.
(deprecated) Construction properties for
Connection.
Example:
SecurityGroup securityGroup;
Vpc vpc;
Connection.Builder.create(this, "MyConnection")
.type(ConnectionType.NETWORK)
.securityGroups(List.of(securityGroup))
// vpcSubnets is optional - defaults to private subnets
.network(ConnectionNetwork.vpc(vpc, SubnetSelection.builder().subnetType(SubnetType.PRIVATE_WITH_EGRESS).build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionProps.Builderbuilder()Deprecated.getType()Deprecated.Methods inherited from interface software.amazon.awscdk.services.glue.alpha.ConnectionOptions
getConnectionName, getDescription, getMatchCriteria, getNetwork, getProperties, getSecret, getSecurityGroupsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
Deprecated.(deprecated) The type of the connection. -
builder
Deprecated.- Returns:
- a
ConnectionProps.BuilderofConnectionProps
-