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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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.

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.

Returns:

  • (String)


1801
1802
1803
1804
1805
1806
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 1801

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

#servicesArray<Types::ServiceSummary>

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

Returns:



1801
1802
1803
1804
1805
1806
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 1801

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