DataIntegrationReference
- class aws_cdk.aws_appintegrations.DataIntegrationReference(*, data_integration_arn, data_integration_id)
Bases:
object
A reference to a DataIntegration resource.
- Parameters:
data_integration_arn (
str
) – The ARN of the DataIntegration resource.data_integration_id (
str
) – The Id of the DataIntegration 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 import aws_appintegrations as appintegrations data_integration_reference = appintegrations.DataIntegrationReference( data_integration_arn="dataIntegrationArn", data_integration_id="dataIntegrationId" )
Attributes
- data_integration_arn
The ARN of the DataIntegration resource.
- data_integration_id
The Id of the DataIntegration resource.