interface CfnConnectionProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnConnectionProps |
Java | software.amazon.awscdk.services.glue.CfnConnectionProps |
Python | aws_cdk.aws_glue.CfnConnectionProps |
TypeScript | @aws-cdk/aws-glue » CfnConnectionProps |
Properties for defining a CfnConnection
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue from '@aws-cdk/aws-glue';
declare const connectionProperties: any;
const cfnConnectionProps: glue.CfnConnectionProps = {
catalogId: 'catalogId',
connectionInput: {
connectionType: 'connectionType',
// the properties below are optional
connectionProperties: connectionProperties,
description: 'description',
matchCriteria: ['matchCriteria'],
name: 'name',
physicalConnectionRequirements: {
availabilityZone: 'availabilityZone',
securityGroupIdList: ['securityGroupIdList'],
subnetId: 'subnetId',
},
},
};
Properties
Name | Type | Description |
---|---|---|
catalog | string | The ID of the data catalog to create the catalog object in. |
connection | IResolvable | Connection | The connection that you want to create. |
catalogId
Type:
string
The ID of the data catalog to create the catalog object in.
Currently, this should be the AWS account ID.
To specify the account ID, you can use the
Ref
intrinsic function with theAWS::AccountId
pseudo parameter. For example:!Ref AWS::AccountId
.
connectionInput
Type:
IResolvable
|
Connection
The connection that you want to create.