CreateAliasRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
Name object
FunctionVersion object
Description object
RoutingConfig object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-createaliasrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAliasRequest",
  "title": "CreateAliasRequest",
  "type": "object",
  "required": [
    "Name",
    "FunctionVersion"
  ],
  "properties": {
    "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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing\">routing configuration</a> of the alias."
        }
      ]
    }
  }
}