Amazon API Gateway · JSON Structure

Management Connection Structure

Connection schema from Amazon API Gateway management API

Type: object Properties: 3
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Connection 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

ConnectedAt LastActiveAt Identity

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "ConnectedAt": {
      "type": "datetime",
      "description": "Timestamp when the client connected.",
      "example": "2025-03-15T14:30:00Z"
    },
    "LastActiveAt": {
      "type": "datetime",
      "description": "Timestamp of the most recent activity on the connection.",
      "example": "2025-03-15T14:30:00Z"
    },
    "Identity": {
      "type": "object",
      "properties": {
        "SourceIp": {
          "type": "string",
          "description": "Source IP address of the client.",
          "example": "example-value"
        },
        "UserAgent": {
          "type": "string",
          "description": "User agent string from the client.",
          "example": "example-value"
        }
      }
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/management-connection-structure.json",
  "name": "Connection",
  "description": "Connection schema from Amazon API Gateway management API"
}