EventIntegrationReference
- class aws_cdk.aws_appintegrations.EventIntegrationReference(*, event_integration_arn, event_integration_name)
Bases:
object
A reference to a EventIntegration resource.
- Parameters:
event_integration_arn (
str
) – The ARN of the EventIntegration resource.event_integration_name (
str
) – The Name of the EventIntegration 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 event_integration_reference = appintegrations.EventIntegrationReference( event_integration_arn="eventIntegrationArn", event_integration_name="eventIntegrationName" )
Attributes
- event_integration_arn
The ARN of the EventIntegration resource.
- event_integration_name
The Name of the EventIntegration resource.