Amazon Connect · Schema

AgentStatusSummary

Contains information about an agent status.

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
Id string The identifier for an agent status.
Arn string The Amazon Resource Name (ARN) for the agent status.
Name string The name of the agent status.
Type string The type of the agent status.
View JSON Schema on GitHub

JSON Schema

amazon-connect-agentstatussummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AgentStatusSummary",
  "title": "AgentStatusSummary",
  "type": "object",
  "description": "Contains information about an agent status.",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The identifier for an agent status.",
      "example": "a1b2c3d4-5678-90ab-cdef-44444EXAMPLE"
    },
    "Arn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) for the agent status."
    },
    "Name": {
      "type": "string",
      "description": "The name of the agent status.",
      "example": "Available"
    },
    "Type": {
      "type": "string",
      "description": "The type of the agent status.",
      "enum": [
        "ROUTABLE",
        "CUSTOM",
        "OFFLINE"
      ],
      "example": "ROUTABLE"
    }
  }
}