Values.DeploymentSourceInformation about an application version deployment.
type nonrec t = {versionLabel : String_.t option;The version label of the application version in the deployment.
*)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.
*)status : String_.t option;The status of the deployment: In Progress : The deployment is in progress. Deployed : The deployment succeeded. Failed : The deployment failed.
*)deploymentTime : DeploymentTimestamp.t option;For in-progress deployments, the time that the deployment started. For completed deployments, the time that the deployment ended.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of NullableLong.t
| `String of String_.t
| `Timestamp of DeploymentTimestamp.t ])
list ]