Module Values.HealthCheckSource

A complex type that contains information about one health check that is associated with the current Amazon Web Services account.

Sourcetype nonrec t = {
  1. id : HealthCheckId.t option;
    (*

    The identifier that Amazon Route 53 assigned to the health check when you created it. When you add or update a resource record set, you use this value to specify which health check to use. The value can be up to 64 characters long.

    *)
  2. callerReference : HealthCheckNonce.t option;
    (*

    A unique string that you specified when you created the health check.

    *)
  3. linkedService : LinkedService.t option;
    (*

    If the health check was created by another service, the service that created the health check. When a health check is created by another service, you can't edit or delete it using Amazon Route 53.

    *)
  4. healthCheckConfig : HealthCheckConfig.t option;
    (*

    A complex type that contains detailed information about one health check.

    *)
  5. healthCheckVersion : HealthCheckVersion.t option;
    (*

    The version of the health check. You can optionally pass this value in a call to UpdateHealthCheck to prevent overwriting another change to the health check.

    *)
  6. cloudWatchAlarmConfiguration : CloudWatchAlarmConfiguration.t option;
    (*

    A complex type that contains information about the CloudWatch alarm that Amazon Route 53 is monitoring for this health check.

    *)
}
Sourceval make : ?id:??? -> ?callerReference:??? -> ?linkedService:??? -> ?healthCheckConfig:??? -> ?healthCheckVersion:??? -> ?cloudWatchAlarmConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of HealthCheckVersion.t | `String of HealthCheckId.t | `Structure of (string * [> `Boolean of MeasureLatency.t | `Double of Threshold.t | `Enum of string | `Integer of Port.t | `List of [> `Enum of string | `String of HealthCheckId.t | `Structure of (string * [> `String of DimensionField.t ]) list ] list | `String of ServicePrincipal.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