Class: Aws::AppMesh::Types::ListVirtualNodesOutput

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

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The ‘nextToken` value to include in a future `ListVirtualNodes` request. When the results of a `ListVirtualNodes` request exceed `limit`, you can use this value to retrieve the next page of results. This value is `null` when there are no more results to return.

Returns:

  • (String)


3203
3204
3205
3206
3207
# File 'lib/aws-sdk-appmesh/types.rb', line 3203

class ListVirtualNodesOutput < Struct.new(
  :next_token,
  :virtual_nodes)
  include Aws::Structure
end

#virtual_nodesArray<Types::VirtualNodeRef>

The list of existing virtual nodes for the specified service mesh.

Returns:



3203
3204
3205
3206
3207
# File 'lib/aws-sdk-appmesh/types.rb', line 3203

class ListVirtualNodesOutput < Struct.new(
  :next_token,
  :virtual_nodes)
  include Aws::Structure
end