Module Values.LastDeploymentInfoSource

Information about the most recent attempted or successful deployment to a deployment group.

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

    The unique ID of a deployment.

    *)
  2. status : DeploymentStatus.t option;
    (*

    The status of the most recent deployment.

    *)
  3. endTime : Timestamp.t option;
    (*

    A timestamp that indicates when the most recent deployment to the deployment group was complete.

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

    A timestamp that indicates when the most recent deployment to the deployment group started.

    *)
}
Sourceval make : ?deploymentId:??? -> ?status:??? -> ?endTime:??? -> ?createTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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