Module Values.RuleUpdateFailureSource

Describes a rule update that failed.

Sourcetype nonrec t = {
  1. ruleIdentifier : RuleIdentifier.t option;
    (*

    The ID or ARN of the rule.

    *)
  2. failureCode : FailureCode.t option;
    (*

    The failure code.

    *)
  3. failureMessage : FailureMessage.t option;
    (*

    The failure message.

    *)
}
Sourceval make : ?ruleIdentifier:??? -> ?failureCode:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RuleIdentifier.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