Module Values.UpdateAutomationRuleV2RequestSource

Updates a V2 automation rule.

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

    The ARN of the automation rule.

    *)
  2. ruleStatus : RuleStatusV2.t option;
    (*

    The status of the automation rule.

    *)
  3. ruleOrder : RuleOrderValueV2.t option;
    (*

    Represents a value for the rule priority.

    *)
  4. description : NonEmptyString.t option;
    (*

    A description of the automation rule.

    *)
  5. ruleName : NonEmptyString.t option;
    (*

    The name of the automation rule.

    *)
  6. criteria : Criteria.t option;
    (*

    The filtering type and configuration of the automation rule.

    *)
  7. actions : AutomationRulesActionListV2.t option;
    (*

    A list of actions to be performed when the rule criteria is met.

    *)
}
Sourceval context_ : string
Sourceval make : ?ruleStatus:??? -> ?ruleOrder:??? -> ?description:??? -> ?ruleName:??? -> ?criteria:??? -> ?actions:??? -> identifier:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of RuleOrderValueV2.t | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ]) 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