Module Values.CreateHealthCheckRequestSource

A complex type that contains the health check request information.

Sourcetype nonrec t = {
  1. callerReference : HealthCheckNonce.t;
    (*

    A unique string that identifies the request and that allows you to retry a failed CreateHealthCheck request without the risk of creating two identical health checks: If you send a CreateHealthCheck request with the same CallerReference and settings as a previous request, and if the health check doesn't exist, Amazon Route 53 creates the health check. If the health check does exist, Route 53 returns the health check configuration in the response. If you send a CreateHealthCheck request with the same CallerReference as a deleted health check, regardless of the settings, Route 53 returns a HealthCheckAlreadyExists error. If you send a CreateHealthCheck request with the same CallerReference as an existing health check but with different settings, Route 53 returns a HealthCheckAlreadyExists error. If you send a CreateHealthCheck request with a unique CallerReference but settings identical to an existing health check, Route 53 creates the health check. Route 53 does not store the CallerReference for a deleted health check indefinitely. The CallerReference for a deleted health check will be deleted after a number of days.

    *)
  2. healthCheckConfig : HealthCheckConfig.t;
    (*

    A complex type that contains settings for a new health check.

    *)
}
Sourceval context_ : string
Sourceval make : callerReference:HealthCheckNonce.t -> healthCheckConfig:HealthCheckConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HealthCheckNonce.t | `Structure of (string * [> `Boolean of MeasureLatency.t | `Enum of string | `Integer of Port.t | `List of [> `Enum of string | `String of HealthCheckId.t ] list | `String of IPAddress.t | `Structure of (string * [> `Enum of string | `String of AlarmName.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t