Module Values.InsightSource

Contains information about a Security Hub CSPM insight.

Sourcetype nonrec t = {
  1. insightArn : NonEmptyString.t option;
    (*

    The ARN of a Security Hub CSPM insight.

    *)
  2. name : NonEmptyString.t option;
    (*

    The name of a Security Hub CSPM insight.

    *)
  3. filters : AwsSecurityFindingFilters.t option;
    (*

    One or more attributes used to filter the findings included in the insight. You can filter by up to ten finding attributes. For each attribute, you can provide up to 20 filter values. The insight only includes findings that match the criteria defined in the filters.

    *)
  4. groupByAttribute : NonEmptyString.t option;
    (*

    The grouping attribute for the insight's findings. Indicates how to group the matching findings, and identifies the type of item that the insight applies to. For example, if an insight is grouped by resource identifier, then the insight produces a list of resource identifiers.

    *)
}
Sourceval make : ?insightArn:??? -> ?name:??? -> ?filters:??? -> ?groupByAttribute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) 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