Amazon API Gateway · Schema

CreateApiKeyRequest

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
name string
description string
enabled boolean
generateDistinctId boolean
value string
stageKeys array
customerId string
tags object
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-createapikeyrequest-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateApiKeyRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "generateDistinctId": {
      "type": "boolean"
    },
    "value": {
      "type": "string"
    },
    "stageKeys": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/StageKey"
      }
    },
    "customerId": {
      "type": "string"
    },
    "tags": {
      "type": "object"
    }
  }
}