AgentsforBedrock / Client / list_ingestion_jobs
list_ingestion_jobs#
- AgentsforBedrock.Client.list_ingestion_jobs(**kwargs)#
- Lists the data ingestion jobs for a data source. The list also includes information about each job. - See also: AWS API Documentation - Request Syntax- response = client.list_ingestion_jobs( dataSourceId='string', filters=[ { 'attribute': 'STATUS', 'operator': 'EQ', 'values': [ 'string', ] }, ], knowledgeBaseId='string', maxResults=123, nextToken='string', sortBy={ 'attribute': 'STATUS'|'STARTED_AT', 'order': 'ASCENDING'|'DESCENDING' } ) - Parameters:
- dataSourceId (string) – - [REQUIRED] - The unique identifier of the data source for the list of data ingestion jobs. 
- filters (list) – - Contains information about the filters for filtering the data. - (dict) – - The definition of a filter to filter the data. - attribute (string) – [REQUIRED] - The name of field or attribute to apply the filter. 
- operator (string) – [REQUIRED] - The operation to apply to the field or attribute. 
- values (list) – [REQUIRED] - A list of values that belong to the field or attribute. - (string) – 
 
 
 
- knowledgeBaseId (string) – - [REQUIRED] - The unique identifier of the knowledge base for the list of data ingestion jobs. 
- maxResults (integer) – 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 - nextTokenfield when making another request to return the next batch of results.
- nextToken (string) – If the total number of results is greater than the - maxResultsvalue provided in the request, enter the token returned in the- nextTokenfield in the response in this field to return the next batch of results.
- sortBy (dict) – - Contains details about how to sort the data. - attribute (string) – [REQUIRED] - The name of field or attribute to apply sorting of data. 
- order (string) – [REQUIRED] - The order for sorting the data. 
 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'ingestionJobSummaries': [ { 'dataSourceId': 'string', 'description': 'string', 'ingestionJobId': 'string', 'knowledgeBaseId': 'string', 'startedAt': datetime(2015, 1, 1), 'statistics': { 'numberOfDocumentsDeleted': 123, 'numberOfDocumentsFailed': 123, 'numberOfDocumentsScanned': 123, 'numberOfMetadataDocumentsModified': 123, 'numberOfMetadataDocumentsScanned': 123, 'numberOfModifiedDocumentsIndexed': 123, 'numberOfNewDocumentsIndexed': 123 }, 'status': 'STARTING'|'IN_PROGRESS'|'COMPLETE'|'FAILED'|'STOPPING'|'STOPPED', 'updatedAt': datetime(2015, 1, 1) }, ], 'nextToken': 'string' } - Response Structure- (dict) – - ingestionJobSummaries (list) – - A list of data ingestion jobs with information about each job. - (dict) – - Contains details about a data ingestion job. - dataSourceId (string) – - The unique identifier of the data source for the data ingestion job. 
- description (string) – - The description of the data ingestion job. 
- ingestionJobId (string) – - The unique identifier of the data ingestion job. 
- knowledgeBaseId (string) – - The unique identifier of the knowledge base for the data ingestion job. 
- startedAt (datetime) – - The time the data ingestion job started. 
- statistics (dict) – - Contains statistics for the data ingestion job. - numberOfDocumentsDeleted (integer) – - The number of source documents that were deleted. 
- numberOfDocumentsFailed (integer) – - The number of source documents that failed to be ingested. 
- numberOfDocumentsScanned (integer) – - The total number of source documents that were scanned. Includes new, updated, and unchanged documents. 
- numberOfMetadataDocumentsModified (integer) – - The number of metadata files that were updated or deleted. 
- numberOfMetadataDocumentsScanned (integer) – - The total number of metadata files that were scanned. Includes new, updated, and unchanged files. 
- numberOfModifiedDocumentsIndexed (integer) – - The number of modified source documents in the data source that were successfully indexed. 
- numberOfNewDocumentsIndexed (integer) – - The number of new source documents in the data source that were successfully indexed. 
 
- status (string) – - The status of the data ingestion job. 
- updatedAt (datetime) – - The time the data ingestion job was last updated. 
 
 
- nextToken (string) – - If the total number of results is greater than the - maxResultsvalue provided in the request, use this token when making another request in the- nextTokenfield to return the next batch of results.
 
 
 - Exceptions- AgentsforBedrock.Client.exceptions.ThrottlingException
- AgentsforBedrock.Client.exceptions.AccessDeniedException
- AgentsforBedrock.Client.exceptions.ValidationException
- AgentsforBedrock.Client.exceptions.InternalServerException
- AgentsforBedrock.Client.exceptions.ResourceNotFoundException