Module Values.ManagedRuleDescriptionSource

Contains information about managed Contributor Insights rules, as returned by ListManagedInsightRules.

Sourcetype nonrec t = {
  1. templateName : TemplateName.t option;
    (*

    The template name for the managed rule. Used to enable managed rules using PutManagedInsightRules.

    *)
  2. resourceARN : AmazonResourceName.t option;
    (*

    If a managed rule is enabled, this is the ARN for the related Amazon Web Services resource.

    *)
  3. ruleState : ManagedRuleState.t option;
    (*

    Describes the state of a managed rule. If present, it contains information about the Contributor Insights rule that contains information about the related Amazon Web Services resource.

    *)
}
Sourceval make : ?templateName:??? -> ?resourceARN:??? -> ?ruleState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TemplateName.t | `Structure of (string * [> `String of InsightRuleName.t ]) list ]) 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