Interface ConnectionOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ConnectionProps
- All Known Implementing Classes:
ConnectionOptions.Jsii$Proxy,ConnectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:18.288Z")
@Stability(Experimental)
public interface ConnectionOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Base Connection Options.
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.alpha.*;
import software.amazon.awscdk.services.ec2.*;
SecurityGroup securityGroup;
Subnet subnet;
ConnectionOptions connectionOptions = ConnectionOptions.builder()
.connectionName("connectionName")
.description("description")
.matchCriteria(List.of("matchCriteria"))
.properties(Map.of(
"propertiesKey", "properties"))
.securityGroups(List.of(securityGroup))
.subnet(subnet)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forConnectionOptionsstatic final classAn implementation forConnectionOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionOptions.Builderbuilder()default String(experimental) The name of the connection.default String(experimental) The description of the connection.(experimental) A list of criteria that can be used in selecting this connection.(experimental) Key-Value pairs that define parameters for the connection.default List<ISecurityGroup> (experimental) The list of security groups needed to successfully make this connection e.g.default ISubnet(experimental) The VPC subnet to connect to resources within a VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionName
(experimental) The name of the connection.Default: cloudformation generated name
-
getDescription
(experimental) The description of the connection.Default: no description
-
getMatchCriteria
(experimental) A list of criteria that can be used in selecting this connection.This is useful for filtering the results of https://awscli.amazonaws.com/v2/documentation/api/latest/reference/glue/get-connections.html
Default: no match criteria
-
getProperties
(experimental) Key-Value pairs that define parameters for the connection.Default: empty properties
- See Also:
-
getSecurityGroups
(experimental) The list of security groups needed to successfully make this connection e.g. to successfully connect to VPC.Default: no security group
-
getSubnet
(experimental) The VPC subnet to connect to resources within a VPC.See more at https://docs.aws.amazon.com/glue/latest/dg/start-connecting.html.
Default: no subnet
-
builder
- Returns:
- a
ConnectionOptions.BuilderofConnectionOptions
-