Module Values.LambdaDetailsSource

Information about the Lambda function involved in the finding.

Sourcetype nonrec t = {
  1. functionArn : String_.t option;
    (*

    Amazon Resource Name (ARN) of the Lambda function.

    *)
  2. functionName : String_.t option;
    (*

    Name of the Lambda function.

    *)
  3. description : String_.t option;
    (*

    Description of the Lambda function.

    *)
  4. lastModifiedAt : Timestamp.t option;
    (*

    The timestamp when the Lambda function was last modified. This field is in the UTC date string format (2023-03-22T19:37:20.168Z).

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

    The revision ID of the Lambda function version.

    *)
  6. functionVersion : String_.t option;
    (*

    The version of the Lambda function.

    *)
  7. role : String_.t option;
    (*

    The execution role of the Lambda function.

    *)
  8. vpcConfig : VpcConfig.t option;
    (*

    Amazon Virtual Private Cloud configuration details associated with your Lambda function.

    *)
  9. tags : Tags.t option;
    (*

    A list of tags attached to this resource, listed in the format of key:value pair.

    *)
}
Sourceval make : ?functionArn:??? -> ?functionName:??? -> ?description:??? -> ?lastModifiedAt:??? -> ?revisionId:??? -> ?functionVersion:??? -> ?role:??? -> ?vpcConfig:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list | `Timestamp of Timestamp.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