interface MeshReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.MeshReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#MeshReference |
Java | software.amazon.awscdk.services.appmesh.MeshReference |
Python | aws_cdk.aws_appmesh.MeshReference |
TypeScript | aws-cdk-lib » aws_appmesh » MeshReference |
A reference to a Mesh 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 appmesh } from 'aws-cdk-lib';
const meshReference: appmesh.MeshReference = {
meshArn: 'meshArn',
meshId: 'meshId',
};
Properties
| Name | Type | Description |
|---|---|---|
| mesh | string | The ARN of the Mesh resource. |
| mesh | string | The Id of the Mesh resource. |
meshArn
Type:
string
The ARN of the Mesh resource.
meshId
Type:
string
The Id of the Mesh resource.

.NET
Go
Java
Python
TypeScript