Get Assistant
connectwisdomservice_get_assistant | R Documentation |
Retrieves information about an assistant¶
Description¶
Retrieves information about an assistant.
Usage¶
Arguments¶
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(
assistant = list(
assistantArn = "string",
assistantId = "string",
description = "string",
integrationConfiguration = list(
topicIntegrationArn = "string"
),
name = "string",
serverSideEncryptionConfiguration = list(
kmsKeyId = "string"
),
status = "CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED",
tags = list(
"string"
),
type = "AGENT"
)
)