AWS Lambda · Schema

AliasConfiguration

Configuration of a Lambda function alias

Properties

Name Type Description
AliasArn string The ARN of the alias
Name string The name of the alias
FunctionVersion string The function version that the alias invokes
Description string Description of the alias
RevisionId string A unique identifier that changes when you update the alias
View JSON Schema on GitHub

JSON Schema

aws-lambda-alias-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AliasConfiguration",
  "type": "object",
  "description": "Configuration of a Lambda function alias",
  "properties": {
    "AliasArn": {
      "type": "string",
      "description": "The ARN of the alias"
    },
    "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"
    },
    "RevisionId": {
      "type": "string",
      "description": "A unique identifier that changes when you update the alias"
    }
  }
}