Module Values.LambdaFunctionInfoSource

Information about a Lambda function specified in a deployment.

Sourcetype nonrec t = {
  1. functionName : LambdaFunctionName.t option;
    (*

    The name of a Lambda function.

    *)
  2. functionAlias : LambdaFunctionAlias.t option;
    (*

    The alias of a Lambda function. For more information, see Lambda Function Aliases in the Lambda Developer Guide.

    *)
  3. currentVersion : Version.t option;
    (*

    The version of a Lambda function that production traffic points to.

    *)
  4. targetVersion : Version.t option;
    (*

    The version of a Lambda function that production traffic points to after the Lambda function is deployed.

    *)
  5. targetVersionWeight : TrafficWeight.t option;
    (*

    The percentage of production traffic that the target version of a Lambda function receives.

    *)
}
Sourceval make : ?functionName:??? -> ?functionAlias:??? -> ?currentVersion:??? -> ?targetVersion:??? -> ?targetVersionWeight:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of TrafficWeight.t | `String of LambdaFunctionName.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