Class: Aws::AppMesh::Types::ListVirtualServicesOutput

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 `ListVirtualServices` request. When the results of a `ListVirtualServices` 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)


2208
2209
2210
2211
2212
# File 'lib/aws-sdk-appmesh/types.rb', line 2208

class ListVirtualServicesOutput < Struct.new(
  :next_token,
  :virtual_services)
  include Aws::Structure
end

#virtual_servicesArray<Types::VirtualServiceRef>

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

Returns:



2208
2209
2210
2211
2212
# File 'lib/aws-sdk-appmesh/types.rb', line 2208

class ListVirtualServicesOutput < Struct.new(
  :next_token,
  :virtual_services)
  include Aws::Structure
end