interface IntegrationResourcePropertyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.IntegrationResourcePropertyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#IntegrationResourcePropertyReference |
Java | software.amazon.awscdk.interfaces.glue.IntegrationResourcePropertyReference |
Python | aws_cdk.interfaces.aws_glue.IntegrationResourcePropertyReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » IntegrationResourcePropertyReference |
A reference to a IntegrationResourceProperty 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 integrationResourcePropertyReference: interfaces_aws_glue.IntegrationResourcePropertyReference = {
resourceArn: 'resourceArn',
resourcePropertyArn: 'resourcePropertyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceArn of the IntegrationResourceProperty resource. |
| resource | string | The ResourcePropertyArn of the IntegrationResourceProperty resource. |
resourceArn
Type:
string
The ResourceArn of the IntegrationResourceProperty resource.
resourcePropertyArn
Type:
string
The ResourcePropertyArn of the IntegrationResourceProperty resource.

.NET
Go
Java
Python
TypeScript