Amazon Connect · JSON Structure

User Summary Structure

Contains summary information about a user.

Type: object Properties: 3
ChatContact CenterCustomer ServiceVoiceAIOmnichannel

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

Properties

Id Arn Username

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-structure/user-summary-structure.json",
  "name": "UserSummary",
  "description": "Contains summary information about a user.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The identifier of the user account.",
      "example": "500123"
    },
    "Arn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the user account.",
      "example": "arn:aws:connect:us-east-1:123456789012:instance/a1b2c3d4/agent/500123"
    },
    "Username": {
      "type": "string",
      "description": "The Amazon Connect user name of the user account.",
      "example": "jsmith"
    }
  }
}