VirtualGatewayAttributes

class aws_cdk.aws_appmesh.VirtualGatewayAttributes(*, mesh, virtual_gateway_name)

Bases: object

Unterface with properties necessary to import a reusable VirtualGateway.

Parameters:
  • mesh (IMesh) – The Mesh that the VirtualGateway belongs to.

  • virtual_gateway_name (str) – The name of the VirtualGateway.

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: appmesh.Mesh

virtual_gateway_attributes = appmesh.VirtualGatewayAttributes(
    mesh=mesh,
    virtual_gateway_name="virtualGatewayName"
)

Attributes

mesh

The Mesh that the VirtualGateway belongs to.

virtual_gateway_name

The name of the VirtualGateway.