Interface IConnectionProps
(experimental) Construction properties for Connection.
Inherited Members
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
Remarks
Stability: Experimental