Copyright | (c) 2013-2015 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
This action updates an existing health check.
To update a health check, send a POST
request to the
'2013-04-01/healthcheck/health check ID' resource. The request body
must include an XML document with an UpdateHealthCheckRequest
element.
The response returns an UpdateHealthCheckResponse
element, which
contains metadata about the health check.
See: AWS API Reference for UpdateHealthCheck.
- updateHealthCheck :: Text -> UpdateHealthCheck
- data UpdateHealthCheck
- uhcIPAddress :: Lens' UpdateHealthCheck (Maybe Text)
- uhcFailureThreshold :: Lens' UpdateHealthCheck (Maybe Natural)
- uhcSearchString :: Lens' UpdateHealthCheck (Maybe Text)
- uhcResourcePath :: Lens' UpdateHealthCheck (Maybe Text)
- uhcHealthCheckVersion :: Lens' UpdateHealthCheck (Maybe Natural)
- uhcFullyQualifiedDomainName :: Lens' UpdateHealthCheck (Maybe Text)
- uhcPort :: Lens' UpdateHealthCheck (Maybe Natural)
- uhcHealthCheckId :: Lens' UpdateHealthCheck Text
- updateHealthCheckResponse :: Int -> HealthCheck -> UpdateHealthCheckResponse
- data UpdateHealthCheckResponse
- uhcrsStatus :: Lens' UpdateHealthCheckResponse Int
- uhcrsHealthCheck :: Lens' UpdateHealthCheckResponse HealthCheck
Creating a Request
Creates a value of UpdateHealthCheck
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data UpdateHealthCheck Source
A complex type that contains information about the request to update a
health check.
See: updateHealthCheck
smart constructor.
Request Lenses
uhcIPAddress :: Lens' UpdateHealthCheck (Maybe Text) Source
The IP address of the resource that you want to check.
Specify this value only if you want to change it.
uhcFailureThreshold :: Lens' UpdateHealthCheck (Maybe Natural) Source
The number of consecutive health checks that an endpoint must pass or fail for Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa.
Valid values are integers between 1 and 10. For more information, see "How Amazon Route 53 Determines Whether an Endpoint Is Healthy" in the Amazon Route 53 Developer Guide.
Specify this value only if you want to change it.
uhcSearchString :: Lens' UpdateHealthCheck (Maybe Text) Source
If the value of Type
is HTTP_STR_MATCH
or HTTP_STR_MATCH
, the
string that you want Route 53 to search for in the response body from
the specified resource. If the string appears in the response body,
Route 53 considers the resource healthy.
Specify this value only if you want to change it.
uhcResourcePath :: Lens' UpdateHealthCheck (Maybe Text) Source
The path that you want Amazon Route 53 to request when performing health checks. The path can be any value for which your endpoint will return an HTTP status code of 2xx or 3xx when the endpoint is healthy, for example the file /docs/route53-health-check.html.
Specify this value only if you want to change it.
uhcHealthCheckVersion :: Lens' UpdateHealthCheck (Maybe Natural) Source
Optional. When you specify a health check version, Route 53 compares
this value with the current value in the health check, which prevents
you from updating the health check when the versions don't match. Using
HealthCheckVersion
lets you prevent overwriting another change to the
health check.
uhcFullyQualifiedDomainName :: Lens' UpdateHealthCheck (Maybe Text) Source
Fully qualified domain name of the instance to be health checked.
Specify this value only if you want to change it.
uhcPort :: Lens' UpdateHealthCheck (Maybe Natural) Source
The port on which you want Route 53 to open a connection to perform health checks.
Specify this value only if you want to change it.
uhcHealthCheckId :: Lens' UpdateHealthCheck Text Source
The ID of the health check to update.
Destructuring the Response
updateHealthCheckResponse Source
Creates a value of UpdateHealthCheckResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data UpdateHealthCheckResponse Source
See: updateHealthCheckResponse
smart constructor.
Response Lenses
uhcrsStatus :: Lens' UpdateHealthCheckResponse Int Source
The response status code.
uhcrsHealthCheck :: Lens' UpdateHealthCheckResponse HealthCheck Source
Undocumented member.