Module Values.DeploymentSource

Information about an application version deployment.

Sourcetype nonrec t = {
  1. versionLabel : String_.t option;
    (*

    The version label of the application version in the deployment.

    *)
  2. deploymentId : NullableLong.t option;
    (*

    The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.

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

    The status of the deployment: In Progress : The deployment is in progress. Deployed : The deployment succeeded. Failed : The deployment failed.

    *)
  4. deploymentTime : DeploymentTimestamp.t option;
    (*

    For in-progress deployments, the time that the deployment started. For completed deployments, the time that the deployment ended.

    *)
}
Sourceval make : ?versionLabel:??? -> ?deploymentId:??? -> ?status:??? -> ?deploymentTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of NullableLong.t | `String of String_.t | `Timestamp of DeploymentTimestamp.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