VirtualGatewayReference

class aws_cdk.aws_appmesh.VirtualGatewayReference(*, virtual_gateway_arn, virtual_gateway_id)

Bases: object

A reference to a VirtualGateway resource.

Parameters:
  • virtual_gateway_arn (str) – The ARN of the VirtualGateway resource.

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

virtual_gateway_reference = appmesh.VirtualGatewayReference(
    virtual_gateway_arn="virtualGatewayArn",
    virtual_gateway_id="virtualGatewayId"
)

Attributes

virtual_gateway_arn

The ARN of the VirtualGateway resource.

virtual_gateway_id

The Id of the VirtualGateway resource.