Amazon Connect · Schema

SearchContactsResponse

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
Contacts array
NextToken string
TotalCount integer The total count of the search result.
View JSON Schema on GitHub

JSON Schema

amazon-connect-searchcontactsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchContactsResponse",
  "title": "SearchContactsResponse",
  "type": "object",
  "properties": {
    "Contacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ContactSummary"
      }
    },
    "NextToken": {
      "type": "string"
    },
    "TotalCount": {
      "type": "integer",
      "description": "The total count of the search result."
    }
  }
}