Module Values.PublishVersionRequestSource

Creates a version from the current code and configuration of a function. Use versions to create a snapshot of your function code and configuration that doesn't change. Lambda doesn't publish a version if the function's configuration and code haven't changed since the last version. Use UpdateFunctionCode or UpdateFunctionConfiguration to update the function before publishing a version. Clients can invoke versions directly or with an alias. To create an alias, use CreateAlias.

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

    The name or ARN of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

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

    Only publish a version if the hash value matches the value that's specified. Use this option to avoid publishing a version if the function code has changed since you last updated it. You can get the hash for the version that you uploaded from the output of UpdateFunctionCode.

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

    A description for the version to override the description in the function configuration.

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

    Only update the function if the revision ID matches the ID that's specified. Use this option to avoid publishing a version if the function configuration has changed since you last updated it.

    *)
  5. publishTo : FunctionVersionLatestPublished.t option;
    (*

    Specifies where to publish the function version or configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?codeSha256:??? -> ?description:??? -> ?revisionId:??? -> ?publishTo:??? -> functionName:FunctionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FunctionName.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