AWS Lambda · Schema

UpdateAliasRequest

Request body for updating a function alias

Properties

Name Type Description
FunctionVersion string The function version that the alias invokes
Description string Description of the alias
RevisionId string Update only if the revision ID matches
View JSON Schema on GitHub

JSON Schema

aws-lambda-update-alias-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateAliasRequest",
  "type": "object",
  "description": "Request body for updating a function alias",
  "properties": {
    "FunctionVersion": {
      "type": "string",
      "description": "The function version that the alias invokes"
    },
    "Description": {
      "type": "string",
      "description": "Description of the alias"
    },
    "RevisionId": {
      "type": "string",
      "description": "Update only if the revision ID matches"
    }
  }
}