interface RouteReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppMesh.RouteReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappmesh#RouteReference |
Java | software.amazon.awscdk.interfaces.appmesh.RouteReference |
Python | aws_cdk.interfaces.aws_appmesh.RouteReference |
TypeScript | aws-cdk-lib » interfaces » aws_appmesh » RouteReference |
A reference to a Route resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as interfaces_aws_appmesh } from 'aws-cdk-lib/interfaces';
const routeReference: interfaces_aws_appmesh.RouteReference = {
routeArn: 'routeArn',
routeId: 'routeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| route | string | The ARN of the Route resource. |
| route | string | The Id of the Route resource. |
routeArn
Type:
string
The ARN of the Route resource.
routeId
Type:
string
The Id of the Route resource.

.NET
Go
Java
Python
TypeScript