{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/aws_access_keys_response", "title": "aws_access_keys_response", "type": "object", "additionalProperties": false, "properties": { "authenticationMode": { "type": "string", "enum": [ "credentials" ], "description": "Authentication method is using AWS credentials (AWS key ID and secret key).", "example": "credentials" }, "accessKeyId": { "type": "string", "description": "The AWS key ID for the AWS IAM user. See the Ably AWS authentication docs for details.", "example": "AKIAIOSFODNN7EXAMPLE" } } }