Module Values.OrganizationManagedRuleMetadataSource

An object that specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.

Sourcetype nonrec t = {
  1. description : StringWithCharLimit256Min0.t option;
    (*

    The description that you provide for your organization Config rule.

    *)
  2. ruleIdentifier : StringWithCharLimit256.t;
    (*

    For organization config managed rules, a predefined identifier from a list. For example, IAM_PASSWORD_POLICY is a managed rule. To reference a managed rule, see Using Config managed rules.

    *)
  3. inputParameters : StringWithCharLimit1024.t option;
    (*

    A string, in JSON format, that is passed to your organization Config rule Lambda function.

    *)
  4. maximumExecutionFrequency : MaximumExecutionFrequency.t option;
    (*

    The maximum frequency with which Config runs evaluations for a rule. This is for an Config managed rule that is triggered at a periodic frequency. By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the MaximumExecutionFrequency parameter.

    *)
  5. resourceTypesScope : ResourceTypesScope.t option;
    (*

    The type of the Amazon Web Services resource that was evaluated.

    *)
  6. resourceIdScope : StringWithCharLimit768.t option;
    (*

    The ID of the Amazon Web Services resource that was evaluated.

    *)
  7. tagKeyScope : StringWithCharLimit128.t option;
    (*

    One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

    *)
  8. tagValueScope : StringWithCharLimit256.t option;
    (*

    The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?inputParameters:??? -> ?maximumExecutionFrequency:??? -> ?resourceTypesScope:??? -> ?resourceIdScope:??? -> ?tagKeyScope:??? -> ?tagValueScope:??? -> ruleIdentifier:StringWithCharLimit256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of StringWithCharLimit256.t ] list | `String of StringWithCharLimit256Min0.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