List Import Jobs
connectwisdomservice_list_import_jobs | R Documentation |
Lists information about import jobs¶
Description¶
Lists information about import jobs.
Usage¶
connectwisdomservice_list_import_jobs(knowledgeBaseId, maxResults,
nextToken)
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. |
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(
importJobSummaries = list(
list(
createdTime = as.POSIXct(
"2015-01-01"
),
externalSourceConfiguration = list(
configuration = list(
connectConfiguration = list(
instanceId = "string"
)
),
source = "AMAZON_CONNECT"
),
importJobId = "string",
importJobType = "QUICK_RESPONSES",
knowledgeBaseArn = "string",
knowledgeBaseId = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
metadata = list(
"string"
),
status = "START_IN_PROGRESS"|"FAILED"|"COMPLETE"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED",
uploadId = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_import_jobs(
knowledgeBaseId = "string",
maxResults = 123,
nextToken = "string"
)