ApiDestinationReference

class aws_cdk.aws_events.ApiDestinationReference(*, api_destination_arn, api_destination_name)

Bases: object

A reference to a ApiDestination resource.

Parameters:
  • api_destination_arn (str) – The ARN of the ApiDestination resource.

  • api_destination_name (str) – The Name of the ApiDestination 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_events as events

api_destination_reference = events.ApiDestinationReference(
    api_destination_arn="apiDestinationArn",
    api_destination_name="apiDestinationName"
)

Attributes

api_destination_arn

The ARN of the ApiDestination resource.

api_destination_name

The Name of the ApiDestination resource.