Class: Aws::Route53::Types::ListHealthChecksRequest

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

Overview

A request to retrieve a list of the health checks that are associated with the current Amazon Web Services account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#markerString

If the value of ‘IsTruncated` in the previous response was `true`, you have more health checks. To get another group, submit another `ListHealthChecks` request.

For the value of ‘marker`, specify the value of `NextMarker` from the previous response, which is the ID of the first health check that Amazon Route 53 will return if you submit another request.

If the value of ‘IsTruncated` in the previous response was `false`, there are no more health checks to get.

Returns:

  • (String)


4740
4741
4742
4743
4744
4745
# File 'lib/aws-sdk-route53/types.rb', line 4740

class ListHealthChecksRequest < Struct.new(
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#max_itemsInteger

The maximum number of health checks that you want ‘ListHealthChecks` to return in response to the current request. Amazon Route 53 returns a maximum of 1000 items. If you set `MaxItems` to a value greater than 1000, Route 53 returns only the first 1000 health checks.

Returns:

  • (Integer)


4740
4741
4742
4743
4744
4745
# File 'lib/aws-sdk-route53/types.rb', line 4740

class ListHealthChecksRequest < Struct.new(
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end