Amazon API Gateway · JSON Structure

V1 Create Api Key Request Structure

CreateApiKeyRequest schema from Amazon API Gateway v1 API

Type: object Properties: 3
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

CreateApiKeyRequest is a JSON Structure definition published by Amazon API Gateway, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description enabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the ApiKey.",
      "example": "my-resource"
    },
    "description": {
      "type": "string",
      "description": "Description of the ApiKey.",
      "example": "A description of this resource."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the ApiKey should be enabled.",
      "example": true
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v1-create-api-key-request-structure.json",
  "name": "CreateApiKeyRequest",
  "description": "CreateApiKeyRequest schema from Amazon API Gateway v1 API"
}