Skip to content

List Knowledge Bases

connectwisdomservice_list_knowledge_bases R Documentation

Lists the knowledge bases

Description

Lists the knowledge bases.

Usage

connectwisdomservice_list_knowledge_bases(maxResults, nextToken)

Arguments

maxResults

The maximum number of results to return per page.

nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

Value

A list with the following syntax:

list(
  knowledgeBaseSummaries = list(
    list(
      description = "string",
      knowledgeBaseArn = "string",
      knowledgeBaseId = "string",
      knowledgeBaseType = "EXTERNAL"|"CUSTOM"|"QUICK_RESPONSES",
      name = "string",
      renderingConfiguration = list(
        templateUri = "string"
      ),
      serverSideEncryptionConfiguration = list(
        kmsKeyId = "string"
      ),
      sourceConfiguration = list(
        appIntegrations = list(
          appIntegrationArn = "string",
          objectFields = list(
            "string"
          )
        )
      ),
      status = "CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_knowledge_bases(
  maxResults = 123,
  nextToken = "string"
)