Module Values.ManagedRuleSource

Contains the information that's required to enable a managed Contributor Insights rule for an Amazon Web Services resource.

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

    The template name for the managed Contributor Insights rule, as returned by ListManagedInsightRules.

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

    The ARN of an Amazon Web Services resource that has managed Contributor Insights rules.

    *)
  3. tags : TagList.t option;
    (*

    A list of key-value pairs that you can associate with a managed Contributor Insights rule. You can associate as many as 50 tags with a rule. Tags can help you organize and categorize your resources. You also can use them to scope user permissions by granting a user permission to access or change only the resources that have certain tag values. To associate tags with a rule, you must have the cloudwatch:TagResource permission in addition to the cloudwatch:PutInsightRule permission. If you are using this operation to update an existing Contributor Insights rule, any tags that you specify in this parameter are ignored. To change the tags of an existing rule, use TagResource.

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