Class: Aws::AppMesh::Types::DescribeVirtualRouterInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appmesh/types.rb

Overview

Note:

When making an API call, you may pass DescribeVirtualRouterInput data as a hash:

{
  mesh_name: "ResourceName", # required
  virtual_router_name: "ResourceName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#mesh_nameString

The name of the service mesh that the virtual router resides in.

Returns:

  • (String)


2617
2618
2619
2620
2621
# File 'lib/aws-sdk-appmesh/types.rb', line 2617

class DescribeVirtualRouterInput < Struct.new(
  :mesh_name,
  :virtual_router_name)
  include Aws::Structure
end

#virtual_router_nameString

The name of the virtual router to describe.

Returns:

  • (String)


2617
2618
2619
2620
2621
# File 'lib/aws-sdk-appmesh/types.rb', line 2617

class DescribeVirtualRouterInput < Struct.new(
  :mesh_name,
  :virtual_router_name)
  include Aws::Structure
end