Module Values.RuleGroupsNamespaceSummarySource

The high-level information about a rule groups namespace. To retrieve more information, use DescribeRuleGroupsNamespace.

Sourcetype nonrec t = {
  1. arn : RuleGroupsNamespaceArn.t option;
    (*

    The ARN of the rule groups namespace.

    *)
  2. name : RuleGroupsNamespaceName.t option;
    (*

    The name of the rule groups namespace.

    *)
  3. status : RuleGroupsNamespaceStatus.t option;
    (*

    A structure that displays the current status of the rule groups namespace.

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

    The date and time that the rule groups namespace was created.

    *)
  5. modifiedAt : Timestamp.t option;
    (*

    The date and time that the rule groups namespace was most recently changed.

    *)
  6. tags : TagMap.t option;
    (*

    The list of tag keys and values that are associated with the rule groups namespace.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?status:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of RuleGroupsNamespaceArn.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `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