Skip to content

List Assistant Associations

connectwisdomservice_list_assistant_associations R Documentation

Lists information about assistant associations

Description

Lists information about assistant associations.

Usage

connectwisdomservice_list_assistant_associations(assistantId,
  maxResults, nextToken)

Arguments

assistantId

[required] The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.

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(
  assistantAssociationSummaries = list(
    list(
      assistantArn = "string",
      assistantAssociationArn = "string",
      assistantAssociationId = "string",
      assistantId = "string",
      associationData = list(
        knowledgeBaseAssociation = list(
          knowledgeBaseArn = "string",
          knowledgeBaseId = "string"
        )
      ),
      associationType = "KNOWLEDGE_BASE",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_assistant_associations(
  assistantId = "string",
  maxResults = 123,
  nextToken = "string"
)