Module Values.RollbackInfoSource

Information about a deployment rollback.

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

    The ID of the deployment rollback.

    *)
  2. rollbackTriggeringDeploymentId : DeploymentId.t option;
    (*

    The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.

    *)
  3. rollbackMessage : Description.t option;
    (*

    Information that describes the status of a deployment rollback (for example, whether the deployment can't be rolled back, is in progress, failed, or succeeded).

    *)
}
Sourceval make : ?rollbackDeploymentId:??? -> ?rollbackTriggeringDeploymentId:??? -> ?rollbackMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeploymentId.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