{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AliasConfiguration", "title": "AliasConfiguration", "type": "object", "properties": { "AliasArn": { "allOf": [ { "$ref": "#/components/schemas/FunctionArn" }, { "description": "The Amazon Resource Name (ARN) of the alias." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/Alias" }, { "description": "The name of the alias." } ] }, "FunctionVersion": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The function version that the alias invokes." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "A description of the alias." } ] }, "RoutingConfig": { "allOf": [ { "$ref": "#/components/schemas/AliasRoutingConfiguration" }, { "description": "The routing configuration of the alias." } ] }, "RevisionId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "A unique identifier that changes when you update the alias." } ] } }, "description": "Provides configuration information about a Lambda function alias." }