Module Values.UnprocessedAutomationRuleSource

A list of objects containing RuleArn, ErrorCode, and ErrorMessage. This parameter tells you which automation rules the request didn't process and why.

Sourcetype nonrec t = {
  1. ruleArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) for the unprocessed automation rule.

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

    The error code associated with the unprocessed automation rule.

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

    An error message describing why a request didn't process a specific rule.

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