Module Values_2.RuleSummarySource

A list of ActionTypes associated with 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. eventSourceName : Values_0.EventSourceName.t option;
    (*

    The name of the event source.

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

    The publish status of the rule.

    *)
  6. actionSummaries : Values_0.ActionSummaries.t option;
    (*

    A list of ActionTypes associated with a rule.

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

    The timestamp for when the rule was created.

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

    The timestamp for when the rule was last updated.

    *)
}
Sourceval make : ?name:??? -> ?ruleId:??? -> ?ruleArn:??? -> ?eventSourceName:??? -> ?publishStatus:??? -> ?actionSummaries:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of Values_0.RuleName.t | `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