List Ingestion Jobs
| bedrockagent_list_ingestion_jobs | R Documentation |
Lists the data ingestion jobs for a data source¶
Description¶
Lists the data ingestion jobs for a data source. The list also includes information about each job.
Usage¶
bedrockagent_list_ingestion_jobs(knowledgeBaseId, dataSourceId, filters,
sortBy, maxResults, nextToken)
Arguments¶
knowledgeBaseId |
[required] The unique identifier of the knowledge base for the list of data ingestion jobs. |
dataSourceId |
[required] The unique identifier of the data source for the list of data ingestion jobs. |
filters |
Contains information about the filters for filtering the data. |
sortBy |
Contains details about how to sort the data. |
maxResults |
The maximum number of results to return in the response. If the
total number of results is greater than this value, use the token
returned in the response in the |
nextToken |
If the total number of results is greater than the
|
Value¶
A list with the following syntax:
list(
ingestionJobSummaries = list(
list(
knowledgeBaseId = "string",
dataSourceId = "string",
ingestionJobId = "string",
description = "string",
status = "STARTING"|"IN_PROGRESS"|"COMPLETE"|"FAILED"|"STOPPING"|"STOPPED",
startedAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
statistics = list(
numberOfDocumentsScanned = 123,
numberOfMetadataDocumentsScanned = 123,
numberOfNewDocumentsIndexed = 123,
numberOfModifiedDocumentsIndexed = 123,
numberOfMetadataDocumentsModified = 123,
numberOfDocumentsDeleted = 123,
numberOfDocumentsFailed = 123
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_ingestion_jobs(
knowledgeBaseId = "string",
dataSourceId = "string",
filters = list(
list(
attribute = "STATUS",
operator = "EQ",
values = list(
"string"
)
)
),
sortBy = list(
attribute = "STATUS"|"STARTED_AT",
order = "ASCENDING"|"DESCENDING"
),
maxResults = 123,
nextToken = "string"
)