Class Connection.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<Connection>
- Enclosing class:
Connection
Connection.-
Method Summary
Modifier and TypeMethodDescriptionbuild()connectionName(String connectionName) The name of the connection.static Connection.Builderdescription(String description) The description of the connection.matchCriteria(List<String> matchCriteria) A list of criteria that can be used in selecting this connection.network(ConnectionNetwork network) The VPC network placement for this connection, so it can reach resources inside a VPC.properties(Map<String, String> properties) Key-Value pairs that define parameters for the connection.secret(ISecretRef secret) A reference to a Secrets Manager secret holding the credentials for this connection.securityGroups(List<? extends ISecurityGroup> securityGroups) The list of security groups needed to successfully make this connection e.g.type(ConnectionType type) The type of the connection.
-
Method Details
-
create
@Stability(Stable) public static Connection.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope- This parameter is required.id- This parameter is required.- Returns:
- a new instance of
Connection.Builder.
-
connectionName
The name of the connection.Default: cloudformation generated name
- Parameters:
connectionName- The name of the connection. This parameter is required.- Returns:
this
-
description
The description of the connection.Default: no description
- Parameters:
description- The description of the connection. This parameter is required.- Returns:
this
-
matchCriteria
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
- Parameters:
matchCriteria- A list of criteria that can be used in selecting this connection. This parameter is required.- Returns:
this
-
network
The VPC network placement for this connection, so it can reach resources inside a VPC. See more at https://docs.aws.amazon.com/glue/latest/dg/start-connecting.html.Build it with
ConnectionNetwork.subnet(subnet)to pin a specific subnet, orConnectionNetwork.vpc(vpc, vpcSubnets?)to let the CDK select one.Default: - no VPC network placement
- Parameters:
network- The VPC network placement for this connection, so it can reach resources inside a VPC. See more at https://docs.aws.amazon.com/glue/latest/dg/start-connecting.html. This parameter is required.- Returns:
this
-
properties
Key-Value pairs that define parameters for the connection.Default: empty properties
- Parameters:
properties- Key-Value pairs that define parameters for the connection. This parameter is required.- Returns:
this- See Also:
-
secret
A reference to a Secrets Manager secret holding the credentials for this connection.The secret is referenced through the connection's
SECRET_IDproperty, so Glue reads the credentials at runtime and the secret value never appears in the synthesized template. Prefer this over placing credentials directly inproperties. Accepts anysecretsmanager.ISecret.Default: - no secret; any credentials must be supplied via `properties`
- Parameters:
secret- A reference to a Secrets Manager secret holding the credentials for this connection. This parameter is required.- Returns:
this
-
securityGroups
@Stability(Stable) public Connection.Builder securityGroups(List<? extends ISecurityGroup> securityGroups) The list of security groups needed to successfully make this connection e.g. to successfully connect to VPC.Default: no security group
- Parameters:
securityGroups- The list of security groups needed to successfully make this connection e.g. to successfully connect to VPC. This parameter is required.- Returns:
this
-
type
The type of the connection.- Parameters:
type- The type of the connection. This parameter is required.- Returns:
this
-
build
- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<Connection>- Returns:
- a newly built instance of
Connection.
-