AWS::Glue::IntegrationResourcePropertyThe `AWS::Glue::IntegrationResourceProperty` resource type can be used to setup `ResourceProperty` of the AWS Glue connection (for the SaaS source), DynamoDB Database (for DynamoDB source), or AWS Glue database ARN (for the target). ResourceProperty is used to define the properties requires to setup the integration, including the role to access the connection or database, KMS keys, event bus for event notifications and VPC connection. To set both source and target properties the same API needs to be invoked twice, once with the AWS Glue connection ARN as ResourceArn with SourceProcessingProperties and next, with the AWS Glue database ARN as ResourceArn with TargetProcessingProperties respectively.
import { CfnIntegrationResourceProperty } from 'aws-cdk-lib/aws-glue';Or use the module namespace:
import * as glue from 'aws-cdk-lib/aws-glue';
// glue.CfnIntegrationResourcePropertyConfiguration passed to the constructor as CfnIntegrationResourcePropertyProps.
resourceArnRequiredstringThe connection ARN of the source, or the database ARN of the target.
sourceProcessingPropertiesOptionalIResolvable | SourceProcessingPropertiesPropertyThe resource properties associated with the integration source.
tagsOptionalCfnTag[]An array of key-value pairs to apply to this resource.
targetProcessingPropertiesOptionalIResolvable | TargetProcessingPropertiesPropertyThe structure used to define the resource properties associated with the integration target.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-glueAWS::Glue::IntegrationResourceProperty