MeshReference
- class aws_cdk.aws_appmesh.MeshReference(*, mesh_arn, mesh_id)
Bases:
object
A reference to a Mesh resource.
- Parameters:
mesh_arn (
str
) – The ARN of the Mesh resource.mesh_id (
str
) – The Id of the Mesh resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appmesh as appmesh mesh_reference = appmesh.MeshReference( mesh_arn="meshArn", mesh_id="meshId" )
Attributes
- mesh_arn
The ARN of the Mesh resource.
- mesh_id
The Id of the Mesh resource.