Module Values.SnapshotErrorMessageSource

Describes the errors returned by a snapshot.

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

    A unique identifier for the snapshot returning the error.

    *)
  2. snapshotClusterIdentifier : String_.t option;
    (*

    A unique identifier for the cluster.

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

    The failure code for the error.

    *)
  4. failureReason : String_.t option;
    (*

    The text message describing the error.

    *)
}
Sourceval make : ?snapshotIdentifier:??? -> ?snapshotClusterIdentifier:??? -> ?failureCode:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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