AmplifyUIBuilder / Paginator / ListCodegenJobs
ListCodegenJobs#
- class AmplifyUIBuilder.Paginator.ListCodegenJobs#
- paginator = client.get_paginator('list_codegen_jobs') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - AmplifyUIBuilder.Client.list_codegen_jobs().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( appId='string', environmentName='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- appId (string) – - [REQUIRED] - The unique ID for the Amplify app. 
- environmentName (string) – - [REQUIRED] - The name of the backend environment that is a part of the Amplify app. 
- 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- { 'entities': [ { 'appId': 'string', 'environmentName': 'string', 'id': 'string', 'createdAt': datetime(2015, 1, 1), 'modifiedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } - Response Structure- (dict) – - entities (list) – - The list of code generation jobs for the Amplify app. - (dict) – - A summary of the basic information about the code generation job. - appId (string) – - The unique ID of the Amplify app associated with the code generation job. 
- environmentName (string) – - The name of the backend environment associated with the code generation job. 
- id (string) – - The unique ID for the code generation job summary. 
- createdAt (datetime) – - The time that the code generation job summary was created. 
- modifiedAt (datetime) – - The time that the code generation job summary was modified. 
 
 
- NextToken (string) – - A token to resume pagination.