interface CfnIntegrationResourcePropertyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnIntegrationResourcePropertyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnIntegrationResourcePropertyProps |
Java | software.amazon.awscdk.services.glue.CfnIntegrationResourcePropertyProps |
Python | aws_cdk.aws_glue.CfnIntegrationResourcePropertyProps |
TypeScript | aws-cdk-lib » aws_glue » CfnIntegrationResourcePropertyProps |
Properties for defining a CfnIntegrationResourceProperty.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const cfnIntegrationResourcePropertyProps: glue.CfnIntegrationResourcePropertyProps = {
resourceArn: 'resourceArn',
// the properties below are optional
sourceProcessingProperties: {
roleArn: 'roleArn',
},
tags: [{
key: 'key',
value: 'value',
}],
targetProcessingProperties: {
roleArn: 'roleArn',
// the properties below are optional
connectionName: 'connectionName',
eventBusArn: 'eventBusArn',
kmsArn: 'kmsArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The connection ARN of the source, or the database ARN of the target. |
| source | IResolvable | Source | The resource properties associated with the integration source. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| target | IResolvable | Target | The resource properties associated with the integration target. |
resourceArn
Type:
string
The connection ARN of the source, or the database ARN of the target.
sourceProcessingProperties?
Type:
IResolvable | Source
(optional)
The resource properties associated with the integration source.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
targetProcessingProperties?
Type:
IResolvable | Target
(optional)
The resource properties associated with the integration target.

.NET
Go
Java
Python
TypeScript