DataAutomationforBedrock / Paginator / ListDataAutomationLibraryIngestionJobs
ListDataAutomationLibraryIngestionJobs¶
- class DataAutomationforBedrock.Paginator.ListDataAutomationLibraryIngestionJobs¶
paginator = client.get_paginator('list_data_automation_library_ingestion_jobs')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
DataAutomationforBedrock.Client.list_data_automation_library_ingestion_jobs().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( libraryArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
libraryArn (string) –
[REQUIRED]
ARN generated at the server side when a DataAutomationLibrary is created
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'jobs': [ { 'jobArn': 'string', 'jobStatus': 'IN_PROGRESS'|'COMPLETED'|'COMPLETED_WITH_ERRORS'|'FAILED', 'entityType': 'VOCABULARY', 'operationType': 'UPSERT'|'DELETE', 'creationTime': datetime(2015, 1, 1), 'completionTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
List DataAutomationLibraryIngestionJobs Response
jobs (list) –
List of data automation library ingestion jobs
(dict) –
Summary of a DataAutomationLibraryIngestionJob
jobArn (string) –
ARN of the DataAutomationLibraryIngestionJob
jobStatus (string) –
Status of DataAutomationLibraryIngestionJob
entityType (string) –
Entity types supported in DataAutomationLibraries
operationType (string) –
DataAutomationLibraryIngestionJob operation type
creationTime (datetime) –
Time Stamp
completionTime (datetime) –
Time Stamp
NextToken (string) –
A token to resume pagination.