interface TargetProcessingPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnIntegrationResourcePropertyPropsMixin.TargetProcessingPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnIntegrationResourcePropertyPropsMixin_TargetProcessingPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnIntegrationResourcePropertyPropsMixin.TargetProcessingPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnIntegrationResourcePropertyPropsMixin.TargetProcessingPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnIntegrationResourcePropertyPropsMixin » TargetProcessingPropertiesProperty |
The structure used to define 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const targetProcessingPropertiesProperty: glue_mixins.CfnIntegrationResourcePropertyPropsMixin.TargetProcessingPropertiesProperty = {
connectionName: 'connectionName',
eventBusArn: 'eventBusArn',
kmsArn: 'kmsArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The AWS Glue network connection to configure the AWS 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. |
| role | string | The IAM role to access the AWS Glue database. |
connectionName?
Type:
string
(optional)
The AWS Glue network connection to configure the AWS 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.
roleArn?
Type:
string
(optional)
The IAM role to access the AWS Glue database.

.NET
Go
Java
Python
TypeScript