Class: Aws::ServiceDiscovery::Types::ListInstancesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::ListInstancesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicediscovery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of instances that you want Cloud Map to return in the response to a ‘ListInstances` request.
-
#next_token ⇒ String
For the first ‘ListInstances` request, omit this value.
-
#service_id ⇒ String
The ID of the service that you want to list instances for.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of instances that you want Cloud Map to return in the response to a ‘ListInstances` request. If you don’t specify a value for ‘MaxResults`, Cloud Map returns up to 100 instances.
1572 1573 1574 1575 1576 1577 1578 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1572 class ListInstancesRequest < Struct.new( :service_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
1572 1573 1574 1575 1576 1577 1578 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1572 class ListInstancesRequest < Struct.new( :service_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#service_id ⇒ String
The ID of the service that you want to list instances for.
1572 1573 1574 1575 1576 1577 1578 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 1572 class ListInstancesRequest < Struct.new( :service_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |