Module Values.DaemonRollbackSource

Information about a daemon deployment rollback.

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

    The reason the rollback happened. For example, the circuit breaker initiated the rollback operation.

    *)
  2. startedAt : Timestamp.t option;
    (*

    The time that the rollback started. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

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

    The ARN of the daemon revision deployed as part of the rollback.

    *)
  4. rollbackCapacityProviders : StringList.t option;
    (*

    The capacity providers involved in the rollback.

    *)
}
Sourceval make : ?reason:??? -> ?startedAt:??? -> ?rollbackTargetDaemonRevisionArn:??? -> ?rollbackCapacityProviders:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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