Amazon GameLift · Schema

DeleteAliasInput

DeleteAliasInput schema from Amazon GameLift API

Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

Properties

Name Type Description
AliasId object
View JSON Schema on GitHub

JSON Schema

gamelift-delete-alias-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-delete-alias-input-schema.json",
  "title": "DeleteAliasInput",
  "description": "DeleteAliasInput schema from Amazon GameLift API",
  "type": "object",
  "properties": {
    "AliasId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AliasIdOrArn"
        },
        {
          "description": "A unique identifier of the alias that you want to delete. You can use either the alias ID or ARN value."
        }
      ]
    }
  },
  "required": [
    "AliasId"
  ]
}