Module Values.FunctionSource

Information about a Lambda function.

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

    The ARN of the Lambda function.

    *)
  2. functionConfiguration : FunctionConfiguration.t option;
    (*

    The configuration of the Lambda function.

    *)
  3. id : string;
    (*

    A descriptive or arbitrary ID for the function. This value must be unique within the function definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.

    *)
}
Sourceval context_ : string
Sourceval make : ?functionArn:??? -> ?functionConfiguration:??? -> id:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Boolean of bool | `List of [> `Structure of (string * [> `Enum of string | `String of string ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of int ]) 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