Module Values_1.RuleSource

Information about a rule.

Sourcetype nonrec t = {
  1. name : Values_0.RuleName.t option;
    (*

    The name of the rule.

    *)
  2. ruleId : Values_0.RuleId.t option;
    (*

    A unique identifier for the rule.

    *)
  3. ruleArn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the rule.

    *)
  4. triggerEventSource : Values_0.RuleTriggerEventSource.t option;
    (*

    The event source to trigger the rule.

    *)
  5. function_ : Values_0.RuleFunction.t option;
    (*

    The conditions of the rule.

    *)
  6. actions : Values_0.RuleActions.t option;
    (*

    A list of actions to be run when the rule is triggered.

    *)
  7. publishStatus : Values_0.RulePublishStatus.t option;
    (*

    The publish status of the rule.

    *)
  8. createdTime : Values_0.Timestamp.t option;
    (*

    The timestamp for when the rule was created.

    *)
  9. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The timestamp for the when the rule was last updated.

    *)
  10. lastUpdatedBy : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the user who last updated the rule.

    *)
  11. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval make : ?name:??? -> ?ruleId:??? -> ?ruleArn:??? -> ?triggerEventSource:??? -> ?function_:??? -> ?actions:??? -> ?publishStatus:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> ?lastUpdatedBy:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string | `Structure of (string * [> `Boolean of bool | `Double of float | `String of string | `Structure of 'a list ]) list ]) list ] list | `Map of ([> `String of string ] * [> `Structure of (string * [> `Enum of string | `String of string ]) list ]) list | `String of string | `Structure of (string * [> `Enum of string | `List of [> `String of string | `Structure of (string * [> `Boolean of bool | `Double of float | `String of string | `Structure of 'b list ]) list ] list | `Long of Awso.Import.Int64.t | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ]) list ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.RuleName.t | `Structure of (string * [> `Enum of string | `String of string ]) list | `Timestamp of Values_0.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