Class: Aws::ServiceDiscovery::Types::ListServicesResponse

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

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

If the response contains ‘NextToken`, submit another `ListServices` request to get the next group of results. Specify the value of `NextToken` from the previous response in the next request.

<note markdown=“1”> AWS Cloud Map gets ‘MaxResults` services and then filters them based on the specified criteria. It’s possible that no services in the first ‘MaxResults` services matched the specified criteria but that subsequent groups of `MaxResults` services do contain services that match the criteria.

</note>

Returns:

  • (String)


1647
1648
1649
1650
1651
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1647

class ListServicesResponse < Struct.new(
  :services,
  :next_token)
  include Aws::Structure
end

#servicesArray<Types::ServiceSummary>

An array that contains one ‘ServiceSummary` object for each service that matches the specified filter criteria.

Returns:



1647
1648
1649
1650
1651
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1647

class ListServicesResponse < Struct.new(
  :services,
  :next_token)
  include Aws::Structure
end