Module Values.GeneratorDetailsSource

Provides metadata for the Amazon CodeGuru detector associated with a finding. This field pertains to findings that relate to Lambda functions. Amazon Inspector identifies policy violations and vulnerabilities in Lambda function code based on internal detectors developed in collaboration with Amazon CodeGuru. Security Hub CSPM receives those findings.

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

    The name of the detector used to identify the code vulnerability.

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

    The description of the detector used to identify the code vulnerability.

    *)
  3. labels : TypeList.t option;
    (*

    An array of tags used to identify the detector associated with the finding. Array Members: Minimum number of 0 items. Maximum number of 10 items.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?labels:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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