Skip to content

Get Assistant Association

connectwisdomservice_get_assistant_association R Documentation

Retrieves information about an assistant association

Description

Retrieves information about an assistant association.

Usage

connectwisdomservice_get_assistant_association(assistantAssociationId,
  assistantId)

Arguments

assistantAssociationId

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

assistantId

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

Value

A list with the following syntax:

list(
  assistantAssociation = list(
    assistantArn = "string",
    assistantAssociationArn = "string",
    assistantAssociationId = "string",
    assistantId = "string",
    associationData = list(
      knowledgeBaseAssociation = list(
        knowledgeBaseArn = "string",
        knowledgeBaseId = "string"
      )
    ),
    associationType = "KNOWLEDGE_BASE",
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$get_assistant_association(
  assistantAssociationId = "string",
  assistantId = "string"
)