Braket / Paginator / SearchJobs
SearchJobs¶
- class Braket.Paginator.SearchJobs¶
- paginator = client.get_paginator('search_jobs') - paginate(**kwargs)¶
- Creates an iterator that will paginate through responses from - Braket.Client.search_jobs().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( filters=[ { 'name': 'string', 'values': [ 'string', ], 'operator': 'LT'|'LTE'|'EQUAL'|'GT'|'GTE'|'BETWEEN'|'CONTAINS' }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- filters (list) – - [REQUIRED] - Array of SearchJobsFilter objects to use when searching for hybrid jobs. - (dict) – - A filter used to search for Amazon Braket hybrid jobs. - name (string) – [REQUIRED] - The name of the hybrid job parameter to filter based on. Filter name can be either - jobArnor- createdAt.
- values (list) – [REQUIRED] - The values used to filter hybrid jobs based on the filter name and operator. - (string) – 
 
- operator (string) – [REQUIRED] - An operator to use for the filter. 
 
 
- 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': [ { 'status': 'QUEUED'|'RUNNING'|'COMPLETED'|'FAILED'|'CANCELLING'|'CANCELLED', 'jobArn': 'string', 'jobName': 'string', 'device': 'string', 'createdAt': datetime(2015, 1, 1), 'startedAt': datetime(2015, 1, 1), 'endedAt': datetime(2015, 1, 1), 'tags': { 'string': 'string' } }, ], 'NextToken': 'string' } - Response Structure- (dict) – - jobs (list) – - An array of - JobSummaryobjects for devices that match the specified filter values.- (dict) – - Provides summary information about an Amazon Braket hybrid job. - status (string) – - The status of the Amazon Braket hybrid job. 
- jobArn (string) – - The ARN of the Amazon Braket hybrid job. 
- jobName (string) – - The name of the Amazon Braket hybrid job. 
- device (string) – - The primary device used by an Amazon Braket hybrid job. 
- createdAt (datetime) – - The time at which the Amazon Braket hybrid job was created. 
- startedAt (datetime) – - The time at which the Amazon Braket hybrid job was started. 
- endedAt (datetime) – - The time at which the Amazon Braket hybrid job ended. 
- tags (dict) – - Displays the key, value pairs of tags associated with this hybrid job. - (string) – - (string) – 
 
 
 
 
- NextToken (string) – - A token to resume pagination.