RouteReference

class aws_cdk.aws_appmesh.RouteReference(*, route_arn, route_id)

Bases: object

A reference to a Route resource.

Parameters:
  • route_arn (str) – The ARN of the Route resource.

  • route_id (str) – The Id of the Route 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

route_reference = appmesh.RouteReference(
    route_arn="routeArn",
    route_id="routeId"
)

Attributes

route_arn

The ARN of the Route resource.

route_id

The Id of the Route resource.