Properties
| Name | Type | Description |
|---|---|---|
| ACLNames | array | The names of the Access Control Lists to which the user belongs. |
| ARN | string | The Amazon Resource Name (ARN) of the user. |
| Name | string | The name of the user. |
| Status | string | Indicates the user status. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-memorydb/refs/heads/main/json-schema/memorydb-api-user-schema.json",
"title": "User",
"description": "Represents a MemoryDB user.",
"type": "object",
"properties": {
"ACLNames": {
"description": "The names of the Access Control Lists to which the user belongs.",
"items": {
"type": "string"
},
"type": "array"
},
"ARN": {
"description": "The Amazon Resource Name (ARN) of the user.",
"type": "string"
},
"Name": {
"description": "The name of the user.",
"type": "string"
},
"Status": {
"description": "Indicates the user status.",
"type": "string"
}
}
}