Class: Aws::Route53::Types::ListHealthChecksRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ListHealthChecksRequest
- 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
-
#marker ⇒ String
If the value of ‘IsTruncated` in the previous response was `true`, you have more health checks.
-
#max_items ⇒ Integer
The maximum number of health checks that you want ‘ListHealthChecks` to return in response to the current request.
Instance Attribute Details
#marker ⇒ String
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.
4738 4739 4740 4741 4742 4743 |
# File 'lib/aws-sdk-route53/types.rb', line 4738 class ListHealthChecksRequest < Struct.new( :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
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.
4738 4739 4740 4741 4742 4743 |
# File 'lib/aws-sdk-route53/types.rb', line 4738 class ListHealthChecksRequest < Struct.new( :marker, :max_items) SENSITIVE = [] include Aws::Structure end |