Module Values.AutomationRulesMetadataV2Source

Includes essential metadata information about automation rules.

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

    The ARN of the automation rule.

    *)
  2. ruleId : NonEmptyString.t option;
    (*

    The ID of the automation rule.

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

    The value for the rule priority.

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

    The name of the automation rule.

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

    The status of the automation rule.

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

    An explanation for the purpose and funcitonality of the automation rule.

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

    The list of action to be performed when the rule criteria is met.

    *)
  8. createdAt : Timestamp.t option;
    (*

    The timestamp for when the automation rule was created.

    *)
  9. updatedAt : Timestamp.t option;
    (*

    The timestamp for the most recent modification to the automation rule.

    *)
}
Sourceval make : ?ruleArn:??? -> ?ruleId:??? -> ?ruleOrder:??? -> ?ruleName:??? -> ?ruleStatus:??? -> ?description:??? -> ?actions:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of RuleOrderValueV2.t | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of NonEmptyString.t | `Timestamp of Timestamp.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