IntegrationResourcePropertyReference
- class aws_cdk.interfaces.aws_glue.IntegrationResourcePropertyReference(*, resource_arn, resource_property_arn)
Bases:
objectA reference to a IntegrationResourceProperty resource.
- Parameters:
resource_arn (
str) – The ResourceArn of the IntegrationResourceProperty resource.resource_property_arn (
str) – The ResourcePropertyArn of the IntegrationResourceProperty resource.
- 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.interfaces import aws_glue as interfaces_aws_glue integration_resource_property_reference = interfaces_aws_glue.IntegrationResourcePropertyReference( resource_arn="resourceArn", resource_property_arn="resourcePropertyArn" )
Attributes
- resource_arn
The ResourceArn of the IntegrationResourceProperty resource.
- resource_property_arn
The ResourcePropertyArn of the IntegrationResourceProperty resource.