Module Values.GetFunctionDefinitionVersionRequestSource

Retrieves information about a Lambda function definition version, including which Lambda functions are included in the version and their configurations.

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

    The ID of the Lambda function definition.

    *)
  2. functionDefinitionVersionId : string;
    (*

    The ID of the function definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListFunctionDefinitionVersions'' requests. If the version is the last one that was associated with a function definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.

    *)
  3. nextToken : string option;
    (*

    The token for the next set of results, or ''null'' if there are no additional results.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> functionDefinitionId:string -> functionDefinitionVersionId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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