Module Values.AutoRollbackConfigurationSource

Information about a configuration for automatically rolling back to a previous version of an application revision when a deployment is not completed successfully.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Indicates whether a defined automatic rollback configuration is currently enabled.

    *)
  2. events : AutoRollbackEventsList.t option;
    (*

    The event type or types that trigger a rollback.

    *)
}
Sourceval make : ?enabled:??? -> ?events:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] list ]) 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