interface EndpointReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.EndpointReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#EndpointReference |
Java | software.amazon.awscdk.services.events.EndpointReference |
Python | aws_cdk.aws_events.EndpointReference |
TypeScript | aws-cdk-lib » aws_events » EndpointReference |
A reference to a Endpoint resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const endpointReference: events.EndpointReference = {
endpointArn: 'endpointArn',
endpointName: 'endpointName',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | The ARN of the Endpoint resource. |
| endpoint | string | The Name of the Endpoint resource. |
endpointArn
Type:
string
The ARN of the Endpoint resource.
endpointName
Type:
string
The Name of the Endpoint resource.

.NET
Go
Java
Python
TypeScript