Class: Aws::ServiceDiscovery::Types::GetInstancesHealthStatusRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instancesArray<String>

An array that contains the IDs of all the instances that you want to get the health status for.

If you omit ‘Instances`, Cloud Map returns the health status for all the instances that are associated with the specified service.

<note markdown=“1”> To get the IDs for the instances that you’ve registered by using a specified service, submit a [ListInstances] request.

</note>

[1]: docs.aws.amazon.com/cloud-map/latest/api/API_ListInstances.html

Returns:

  • (Array<String>)


902
903
904
905
906
907
908
909
# File 'lib/aws-sdk-servicediscovery/types.rb', line 902

class GetInstancesHealthStatusRequest < Struct.new(
  :service_id,
  :instances,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

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

Returns:

  • (Integer)


902
903
904
905
906
907
908
909
# File 'lib/aws-sdk-servicediscovery/types.rb', line 902

class GetInstancesHealthStatusRequest < Struct.new(
  :service_id,
  :instances,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

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

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

Returns:

  • (String)


902
903
904
905
906
907
908
909
# File 'lib/aws-sdk-servicediscovery/types.rb', line 902

class GetInstancesHealthStatusRequest < Struct.new(
  :service_id,
  :instances,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#service_idString

The ID of the service that the instance is associated with.

Returns:

  • (String)


902
903
904
905
906
907
908
909
# File 'lib/aws-sdk-servicediscovery/types.rb', line 902

class GetInstancesHealthStatusRequest < Struct.new(
  :service_id,
  :instances,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end