Module Values.CreateAnalyzerRequestSource

Creates an analyzer.

Sourcetype nonrec t = {
  1. analyzerName : Name.t;
    (*

    The name of the analyzer to create.

    *)
  2. type_ : Type.t;
    (*

    The type of analyzer to create. You can create only one analyzer per account per Region. You can create up to 5 analyzers per organization per Region.

    *)
  3. archiveRules : InlineArchiveRulesList.t option;
    (*

    Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.

    *)
  4. tags : TagsMap.t option;
    (*

    An array of key-value pairs to apply to the analyzer. You can use the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. For the tag key, you can specify a value that is 1 to 128 characters in length and cannot be prefixed with aws:. For the tag value, you can specify a value that is 0 to 256 characters in length.

    *)
  5. clientToken : String_.t option;
    (*

    A client token.

    *)
  6. configuration : AnalyzerConfiguration.t option;
    (*

    Specifies the configuration of the analyzer. If the analyzer is an unused access analyzer, the specified scope of unused access is used for the configuration. If the analyzer is an internal access analyzer, the specified internal access analysis rules are used for the configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?archiveRules:??? -> ?tags:??? -> ?clientToken:??? -> ?configuration:??? -> analyzerName:Name.t -> type_:Type.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list ]) list ]) list | `String of Name.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of Name.t | `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t ] list ]) list ] list ]) list ]) list ]) 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