interface IntegrationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.IntegrationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#IntegrationReference |
Java | software.amazon.awscdk.interfaces.glue.IntegrationReference |
Python | aws_cdk.interfaces.aws_glue.IntegrationReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » IntegrationReference |
A reference to a Integration 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_glue } from 'aws-cdk-lib/interfaces';
const integrationReference: interfaces_glue.IntegrationReference = {
integrationArn: 'integrationArn',
integrationName: 'integrationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| integration | string | The IntegrationArn of the Integration resource. |
| integration | string | The IntegrationName of the Integration resource. |
integrationArn
Type:
string
The IntegrationArn of the Integration resource.
integrationName
Type:
string
The IntegrationName of the Integration resource.

.NET
Go
Java
Python
TypeScript