interface ConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.ConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#ConnectionReference |
Java | software.amazon.awscdk.interfaces.glue.ConnectionReference |
Python | aws_cdk.interfaces.aws_glue.ConnectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » ConnectionReference |
A reference to a Connection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as interfaces_aws_glue } from 'aws-cdk-lib/interfaces';
const connectionReference: interfaces_aws_glue.ConnectionReference = {
connectionId: 'connectionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The Id of the Connection resource. |
connectionId
Type:
string
The Id of the Connection resource.

.NET
Go
Java
Python
TypeScript