list_model_customization_jobs¶
Operation¶
list_model_customization_jobs
async
¶
list_model_customization_jobs(input: ListModelCustomizationJobsInput, plugins: list[Plugin] | None = None) -> ListModelCustomizationJobsOutput
Returns a list of model customization jobs that you have submitted. You can filter the jobs to return based on one or more criteria.
For more information, see Custom models in the Amazon Bedrock User Guide.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListModelCustomizationJobsInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
ListModelCustomizationJobsOutput
|
An instance of |
Input¶
ListModelCustomizationJobsInput
dataclass
¶
Dataclass for ListModelCustomizationJobsInput structure.
Attributes¶
creation_time_after
class-attribute
instance-attribute
¶
creation_time_after: datetime | None = None
Return customization jobs created after the specified time.
creation_time_before
class-attribute
instance-attribute
¶
creation_time_before: datetime | None = None
Return customization jobs created before the specified time.
max_results
class-attribute
instance-attribute
¶
max_results: int | None = None
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 nextToken field when making another request to
return the next batch of results.
name_contains
class-attribute
instance-attribute
¶
name_contains: str | None = None
Return customization jobs only if the job name contains these characters.
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
If the total number of results is greater than the maxResults value
provided in the request, enter the token returned in the nextToken
field in the response in this field to return the next batch of results.
sort_by
class-attribute
instance-attribute
¶
sort_by: SortJobsBy | None = None
The field to sort by in the returned list of jobs.
sort_order
class-attribute
instance-attribute
¶
sort_order: SortOrder | None = None
The sort order of the results.
status_equals
class-attribute
instance-attribute
¶
status_equals: FineTuningJobStatus | None = None
Return customization jobs with the specified status.
Output¶
ListModelCustomizationJobsOutput
dataclass
¶
Dataclass for ListModelCustomizationJobsOutput structure.
Attributes¶
model_customization_job_summaries
class-attribute
instance-attribute
¶
model_customization_job_summaries: list[ModelCustomizationJobSummary] | None = None
Job summaries.
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
If the total number of results is greater than the maxResults value
provided in the request, use this token when making another request in
the nextToken field to return the next batch of results.