Module Values.RuleGroupsNamespaceDescriptionSource

The details about one rule groups namespace.

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

    The ARN of the rule groups namespace. For example, arn:aws:aps:<region>:123456789012:rulegroupsnamespace/ws-example1-1234-abcd-5678-ef90abcd1234/rulesfile1.

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

    The name of the rule groups namespace.

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

    The current status of the rule groups namespace.

    *)
  4. data : RuleGroupsNamespaceData.t option;
    (*

    The rule groups file used in the namespace. For details about the rule groups namespace structure, see RuleGroupsNamespaceData.

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

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

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

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

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

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

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?status:??? -> ?data:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of RuleGroupsNamespaceData.t | `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