interface ApiDestinationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.ApiDestinationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#ApiDestinationReference |
Java | software.amazon.awscdk.services.events.ApiDestinationReference |
Python | aws_cdk.aws_events.ApiDestinationReference |
TypeScript | aws-cdk-lib » aws_events » ApiDestinationReference |
A reference to a ApiDestination 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 apiDestinationReference: events.ApiDestinationReference = {
apiDestinationArn: 'apiDestinationArn',
apiDestinationName: 'apiDestinationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The ARN of the ApiDestination resource. |
| api | string | The Name of the ApiDestination resource. |
apiDestinationArn
Type:
string
The ARN of the ApiDestination resource.
apiDestinationName
Type:
string
The Name of the ApiDestination resource.

.NET
Go
Java
Python
TypeScript