Module Values.SingleInstanceHealthSource

Detailed health information about an Amazon EC2 instance in your Elastic Beanstalk environment.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t option;
    (*

    The ID of the Amazon EC2 instance.

    *)
  2. healthStatus : String_.t option;
    (*

    Returns the health status of the specified instance. For more information, see Health Colors and Statuses.

    *)
  3. color : String_.t option;
    (*

    Represents the color indicator that gives you information about the health of the EC2 instance. For more information, see Health Colors and Statuses.

    *)
  4. causes : Causes.t option;
    (*

    Represents the causes, which provide more information about the current health status.

    *)
  5. launchedAt : LaunchedAt.t option;
    (*

    The time at which the EC2 instance was launched.

    *)
  6. applicationMetrics : ApplicationMetrics.t option;
    (*

    Request metrics from your application.

    *)
  7. system : SystemStatus.t option;
    (*

    Operating system metrics from the instance.

    *)
  8. deployment : Deployment.t option;
    (*

    Information about the most recent deployment to an instance.

    *)
  9. availabilityZone : String_.t option;
    (*

    The availability zone in which the instance runs.

    *)
  10. instanceType : String_.t option;
    (*

    The instance's type.

    *)
}
Sourceval make : ?instanceId:??? -> ?healthStatus:??? -> ?color:??? -> ?causes:??? -> ?launchedAt:??? -> ?applicationMetrics:??? -> ?system:??? -> ?deployment:??? -> ?availabilityZone:??? -> ?instanceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Cause.t ] list | `String of InstanceId.t | `Structure of (string * [> `Integer of NullableInteger.t | `List of [> `Double of LoadAverageValue.t ] list | `Long of NullableLong.t | `String of String_.t | `Structure of (string * [> `Double of NullableDouble.t | `Integer of NullableInteger.t ]) list | `Timestamp of DeploymentTimestamp.t ]) list | `Timestamp of LaunchedAt.t ]) 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