Class: Aws::ServiceDiscovery::Types::ListInstancesRequest

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

Overview

Note:

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

{
  service_id: "ResourceId", # required
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of instances that you want AWS Cloud Map to return in the response to a ‘ListInstances` request. If you don’t specify a value for ‘MaxResults`, AWS Cloud Map returns up to 100 instances.

Returns:

  • (Integer)


1377
1378
1379
1380
1381
1382
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1377

class ListInstancesRequest < Struct.new(
  :service_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

For the first ‘ListInstances` request, omit this value.

If more than ‘MaxResults` instances match the specified criteria, you can submit another `ListInstances` request to get the next group of results. Specify the value of `NextToken` from the previous response in the next request.

Returns:

  • (String)


1377
1378
1379
1380
1381
1382
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1377

class ListInstancesRequest < Struct.new(
  :service_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#service_idString

The ID of the service that you want to list instances for.

Returns:

  • (String)


1377
1378
1379
1380
1381
1382
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1377

class ListInstancesRequest < Struct.new(
  :service_id,
  :next_token,
  :max_results)
  include Aws::Structure
end