ConnectionReference

class aws_cdk.aws_events.ConnectionReference(*, connection_arn, connection_name)

Bases: object

A reference to a Connection resource.

Parameters:
  • connection_arn (str) – The ARN of the Connection resource.

  • connection_name (str) – The Name of the Connection 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

connection_reference = events.ConnectionReference(
    connection_arn="connectionArn",
    connection_name="connectionName"
)

Attributes

connection_arn

The ARN of the Connection resource.

connection_name

The Name of the Connection resource.