Module Values.FailedScheduledUpdateGroupActionRequestSource

Describes a scheduled action that could not be created, updated, or deleted.

Sourcetype nonrec t = {
  1. scheduledActionName : XmlStringMaxLen255.t option;
    (*

    The name of the scheduled action.

    *)
  2. errorCode : XmlStringMaxLen64.t option;
    (*

    The error code.

    *)
  3. errorMessage : XmlString.t option;
    (*

    The error message accompanying the error code.

    *)
}
Sourceval make : ?scheduledActionName:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of XmlStringMaxLen255.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