Amazon MSK · Schema
ClientAuthentication
Includes all client authentication information.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| Sasl | object | |
| Tls | object | |
| Unauthenticated | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-client-authentication-schema.json",
"title": "ClientAuthentication",
"description": "\n <p>Includes all client authentication information.</p>",
"type": "object",
"properties": {
"Sasl": {
"allOf": [
{
"$ref": "#/components/schemas/Sasl"
},
{
"xml": {
"name": "sasl"
},
"description": "\n <p>Details for ClientAuthentication using SASL.</p>"
}
]
},
"Tls": {
"allOf": [
{
"$ref": "#/components/schemas/Tls"
},
{
"xml": {
"name": "tls"
},
"description": "\n <p>Details for ClientAuthentication using TLS.</p>"
}
]
},
"Unauthenticated": {
"allOf": [
{
"$ref": "#/components/schemas/Unauthenticated"
},
{
"xml": {
"name": "unauthenticated"
},
"description": "\n <p>Contains information about unauthenticated traffic to the cluster.</p>"
}
]
}
}
}