AWS Lambda · Schema

CreateAliasRequest

Request body for creating a function alias

Properties

Name Type Description
Name string The name of the alias
FunctionVersion string The function version that the alias invokes
Description string Description of the alias
View JSON Schema on GitHub

JSON Schema

aws-lambda-create-alias-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateAliasRequest",
  "type": "object",
  "description": "Request body for creating a function alias",
  "properties": {
    "Name": {
      "type": "string",
      "description": "The name of the alias"
    },
    "FunctionVersion": {
      "type": "string",
      "description": "The function version that the alias invokes"
    },
    "Description": {
      "type": "string",
      "description": "Description of the alias"
    }
  }
}