EndpointReference
- class aws_cdk.interfaces.aws_events.EndpointReference(*, endpoint_arn, endpoint_name)
Bases:
objectA 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.interfaces import aws_events as interfaces_aws_events endpoint_reference = interfaces_aws_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.