CfnIntegrationResourcePropertyProps
- class aws_cdk.aws_glue.CfnIntegrationResourcePropertyProps(*, resource_arn, source_processing_properties=None, tags=None, target_processing_properties=None)
Bases:
objectProperties for defining a
CfnIntegrationResourceProperty.- Parameters:
resource_arn (
str) – The connection ARN of the source, or the database ARN of the target.source_processing_properties (
Union[IResolvable,SourceProcessingPropertiesProperty,Dict[str,Any],None]) – The resource properties associated with the integration source.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.target_processing_properties (
Union[IResolvable,TargetProcessingPropertiesProperty,Dict[str,Any],None]) – The resource properties associated with the integration target.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_glue as glue cfn_integration_resource_property_props = glue.CfnIntegrationResourcePropertyProps( resource_arn="resourceArn", # the properties below are optional source_processing_properties=glue.CfnIntegrationResourceProperty.SourceProcessingPropertiesProperty( role_arn="roleArn" ), tags=[CfnTag( key="key", value="value" )], target_processing_properties=glue.CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty( role_arn="roleArn", # the properties below are optional connection_name="connectionName", event_bus_arn="eventBusArn", kms_arn="kmsArn" ) )
Attributes
- resource_arn
The connection ARN of the source, or the database ARN of the target.
- source_processing_properties
The resource properties associated with the integration source.
- tags
An array of key-value pairs to apply to this resource.
- target_processing_properties
The resource properties associated with the integration target.