interface ApiDestinationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Events.ApiDestinationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsevents#ApiDestinationReference |
Java | software.amazon.awscdk.interfaces.events.ApiDestinationReference |
Python | aws_cdk.interfaces.aws_events.ApiDestinationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_events } from 'aws-cdk-lib/interfaces';
const apiDestinationReference: interfaces_aws_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