Skip to content

Get Knowledge Base

connectwisdomservice_get_knowledge_base R Documentation

Retrieves information about the knowledge base

Description

Retrieves information about the knowledge base.

Usage

connectwisdomservice_get_knowledge_base(knowledgeBaseId)

Arguments

knowledgeBaseId

[required] The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.

Value

A list with the following syntax:

list(
  knowledgeBase = list(
    description = "string",
    knowledgeBaseArn = "string",
    knowledgeBaseId = "string",
    knowledgeBaseType = "EXTERNAL"|"CUSTOM"|"QUICK_RESPONSES",
    lastContentModificationTime = as.POSIXct(
      "2015-01-01"
    ),
    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"
    )
  )
)

Request syntax

svc$get_knowledge_base(
  knowledgeBaseId = "string"
)