Module Values.InstanceSummarySource

Information about an instance in a deployment.

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t option;
    (*

    The unique ID of a deployment.

    *)
  2. instanceId : InstanceId.t option;
    (*

    The instance ID.

    *)
  3. status : InstanceStatus.t option;
    (*

    The deployment status for this instance: Pending: The deployment is pending for this instance. In Progress: The deployment is in progress for this instance. Succeeded: The deployment has succeeded for this instance. Failed: The deployment has failed for this instance. Skipped: The deployment has been skipped for this instance. Unknown: The deployment status is unknown for this instance.

    *)
  4. lastUpdatedAt : Timestamp.t option;
    (*

    A timestamp that indicates when the instance information was last updated.

    *)
  5. lifecycleEvents : LifecycleEventList.t option;
    (*

    A list of lifecycle events for this instance.

    *)
  6. instanceType : InstanceType.t option;
    (*

    Information about which environment an instance belongs to in a blue/green deployment. BLUE: The instance is part of the original environment. GREEN: The instance is part of the replacement environment.

    *)
}
Sourceval make : ?deploymentId:??? -> ?instanceId:??? -> ?status:??? -> ?lastUpdatedAt:??? -> ?lifecycleEvents:??? -> ?instanceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of LifecycleEventName.t | `Structure of (string * [> `Enum of string | `String of ScriptName.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of DeploymentId.t | `Timestamp of Timestamp.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