interface TargetProcessingPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnIntegrationResourceProperty_TargetProcessingPropertiesProperty |
Java | software.amazon.awscdk.services.glue.CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty |
Python | aws_cdk.aws_glue.CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnIntegrationResourceProperty » TargetProcessingPropertiesProperty |
The resource properties associated with the integration target.
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 targetProcessingPropertiesProperty: glue.CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty = {
roleArn: 'roleArn',
// the properties below are optional
connectionName: 'connectionName',
eventBusArn: 'eventBusArn',
kmsArn: 'kmsArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The IAM role to access the Glue database. |
| connection | string | The Glue network connection to configure the Glue job running in the customer VPC. |
| event | string | The ARN of an Eventbridge event bus to receive the integration status notification. |
| kms | string | The ARN of the KMS key used for encryption. |
roleArn
Type:
string
The IAM role to access the Glue database.
connectionName?
Type:
string
(optional)
The Glue network connection to configure the Glue job running in the customer VPC.
eventBusArn?
Type:
string
(optional)
The ARN of an Eventbridge event bus to receive the integration status notification.
kmsArn?
Type:
string
(optional)
The ARN of the KMS key used for encryption.

.NET
Go
Java
Python
TypeScript