CfnIntegrationResourcePropertyProps

class aws_cdk.aws_glue.CfnIntegrationResourcePropertyProps(*, resource_arn, source_processing_properties=None, tags=None, target_processing_properties=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html#cfn-glue-integrationresourceproperty-resourcearn

source_processing_properties

The resource properties associated with the integration source.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html#cfn-glue-integrationresourceproperty-sourceprocessingproperties

tags

An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html#cfn-glue-integrationresourceproperty-tags

target_processing_properties

The resource properties associated with the integration target.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html#cfn-glue-integrationresourceproperty-targetprocessingproperties