Bedrock / Paginator / ListModelCustomizationJobs
ListModelCustomizationJobsΒΆ
- class Bedrock.Paginator.ListModelCustomizationJobsΒΆ
paginator = client.get_paginator('list_model_customization_jobs')
- paginate(**kwargs)ΒΆ
Creates an iterator that will paginate through responses from
Bedrock.Client.list_model_customization_jobs().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( creationTimeAfter=datetime(2015, 1, 1), creationTimeBefore=datetime(2015, 1, 1), statusEquals='InProgress'|'Completed'|'Failed'|'Stopping'|'Stopped', nameContains='string', sortBy='CreationTime', sortOrder='Ascending'|'Descending', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
creationTimeAfter (datetime) β Return customization jobs created after the specified time.
creationTimeBefore (datetime) β Return customization jobs created before the specified time.
statusEquals (string) β Return customization jobs with the specified status.
nameContains (string) β Return customization jobs only if the job name contains these characters.
sortBy (string) β The field to sort by in the returned list of jobs.
sortOrder (string) β The sort order of the results.
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
{ 'modelCustomizationJobSummaries': [ { 'jobArn': 'string', 'baseModelArn': 'string', 'jobName': 'string', 'status': 'InProgress'|'Completed'|'Failed'|'Stopping'|'Stopped', 'statusDetails': { 'validationDetails': { 'status': 'InProgress'|'Completed'|'Stopping'|'Stopped'|'Failed'|'NotStarted', 'creationTime': datetime(2015, 1, 1), 'lastModifiedTime': datetime(2015, 1, 1) }, 'dataProcessingDetails': { 'status': 'InProgress'|'Completed'|'Stopping'|'Stopped'|'Failed'|'NotStarted', 'creationTime': datetime(2015, 1, 1), 'lastModifiedTime': datetime(2015, 1, 1) }, 'trainingDetails': { 'status': 'InProgress'|'Completed'|'Stopping'|'Stopped'|'Failed'|'NotStarted', 'creationTime': datetime(2015, 1, 1), 'lastModifiedTime': datetime(2015, 1, 1) } }, 'lastModifiedTime': datetime(2015, 1, 1), 'creationTime': datetime(2015, 1, 1), 'endTime': datetime(2015, 1, 1), 'customModelArn': 'string', 'customModelName': 'string', 'customizationType': 'FINE_TUNING'|'CONTINUED_PRE_TRAINING'|'DISTILLATION'|'REINFORCEMENT_FINE_TUNING'|'IMPORTED' }, ], 'NextToken': 'string' }
Response Structure
(dict) β
modelCustomizationJobSummaries (list) β
Job summaries.
(dict) β
Information about one customization job
jobArn (string) β
Amazon Resource Name (ARN) of the customization job.
baseModelArn (string) β
Amazon Resource Name (ARN) of the base model.
jobName (string) β
Name of the customization job.
status (string) β
Status of the customization job.
statusDetails (dict) β
Details about the status of the data processing sub-task of the job.
validationDetails (dict) β
The status details for the validation sub-task of the job.
status (string) β
The status of the validation sub-task of the job.
creationTime (datetime) β
The start time of the validation sub-task of the job.
lastModifiedTime (datetime) β
The latest update to the validation sub-task of the job.
dataProcessingDetails (dict) β
The status details for the data processing sub-task of the job.
status (string) β
The status of the data processing sub-task of the job.
creationTime (datetime) β
The start time of the data processing sub-task of the job.
lastModifiedTime (datetime) β
The latest update to the data processing sub-task of the job.
trainingDetails (dict) β
The status details for the training sub-task of the job.
status (string) β
The status of the training sub-task of the job.
creationTime (datetime) β
The start time of the training sub-task of the job.
lastModifiedTime (datetime) β
The latest update to the training sub-task of the job.
lastModifiedTime (datetime) β
Time that the customization job was last modified.
creationTime (datetime) β
Creation time of the custom model.
endTime (datetime) β
Time that the customization job ended.
customModelArn (string) β
Amazon Resource Name (ARN) of the custom model.
customModelName (string) β
Name of the custom model.
customizationType (string) β
Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more information, see Custom models.
NextToken (string) β
A token to resume pagination.