Show / Hide Table of Contents

Interface IConnectionProps

(experimental) Construction properties for Connection.

Inherited Members
IConnectionOptions.ConnectionName
IConnectionOptions.Description
IConnectionOptions.MatchCriteria
IConnectionOptions.Properties
IConnectionOptions.SecurityGroups
IConnectionOptions.Subnet
Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface IConnectionProps : IConnectionOptions
Syntax (vb)
Public Interface IConnectionProps Inherits IConnectionOptions
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
SecurityGroup securityGroup;
             Subnet subnet;

             new Connection(this, "MyConnection", new ConnectionProps {
                 Type = ConnectionType.NETWORK,
                 // The security groups granting AWS Glue inbound access to the data source within the VPC
                 SecurityGroups = new [] { securityGroup },
                 // The VPC subnet which contains the data source
                 Subnet = subnet
             });

Synopsis

Properties

Type

(experimental) The type of the connection.

Properties

Type

(experimental) The type of the connection.

ConnectionType Type { get; }
Property Value

ConnectionType

Remarks

Stability: Experimental

Back to top Generated by DocFX