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.104.0 (build e79254c)",
date="2024-11-21T06:34:18.110Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forConnectionOptions
static final class
An implementation forConnectionOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionOptions.Builder
builder()
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.Builder
ofConnectionOptions
-