EndpointReference
- class aws_cdk.aws_events.EndpointReference(*, endpoint_arn, endpoint_name)
Bases:
object
A reference to a Endpoint resource.
- Parameters:
endpoint_arn (
str
) – The ARN of the Endpoint resource.endpoint_name (
str
) – The Name of the Endpoint 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 endpoint_reference = events.EndpointReference( endpoint_arn="endpointArn", endpoint_name="endpointName" )
Attributes
- endpoint_arn
The ARN of the Endpoint resource.
- endpoint_name
The Name of the Endpoint resource.