Module Values.RulesetItemSource

Contains metadata about the ruleset.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The ID of the Amazon Web Services account that owns the ruleset.

    *)
  2. createdBy : CreatedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who created the ruleset.

    *)
  3. createDate : Date.t option;
    (*

    The date and time that the ruleset was created.

    *)
  4. description : RulesetDescription.t option;
    (*

    The description of the ruleset.

    *)
  5. lastModifiedBy : LastModifiedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who last modified the ruleset.

    *)
  6. lastModifiedDate : Date.t option;
    (*

    The modification date and time of the ruleset.

    *)
  7. name : RulesetName.t option;
    (*

    The name of the ruleset.

    *)
  8. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the ruleset.

    *)
  9. ruleCount : RuleCount.t option;
    (*

    The number of rules that are defined in the ruleset.

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

    Metadata tags that have been applied to the ruleset.

    *)
  11. targetArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.

    *)
}
Sourceval make : ?accountId:??? -> ?createdBy:??? -> ?createDate:??? -> ?description:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?name:??? -> ?resourceArn:??? -> ?ruleCount:??? -> ?tags:??? -> ?targetArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RuleCount.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AccountId.t | `Timestamp of Date.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