Skip to content

Bedrock  >  Operations  >  list_model_import_jobs

list_model_import_jobs

Operation

list_model_import_jobs async

list_model_import_jobs(input: ListModelImportJobsInput, plugins: list[Plugin] | None = None) -> ListModelImportJobsOutput

Returns a list of import jobs you've submitted. You can filter the results to return based on one or more criteria. For more information, see Import a customized model in the Amazon Bedrock User Guide.

Parameters:

Name Type Description Default
input ListModelImportJobsInput

An instance of ListModelImportJobsInput.

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
ListModelImportJobsOutput

An instance of ListModelImportJobsOutput.

Input

ListModelImportJobsInput dataclass

Dataclass for ListModelImportJobsInput structure.

Attributes

creation_time_after class-attribute instance-attribute
creation_time_after: datetime | None = None

Return import jobs that were created after the specified time.

creation_time_before class-attribute instance-attribute
creation_time_before: datetime | None = None

Return import jobs that were 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 imported 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 imported jobs.

sort_order class-attribute instance-attribute
sort_order: SortOrder | None = None

Specifies whether to sort the results in ascending or descending order.

status_equals class-attribute instance-attribute
status_equals: ModelImportJobStatus | None = None

Return imported jobs with the specified status.

Output

ListModelImportJobsOutput dataclass

Dataclass for ListModelImportJobsOutput structure.

Attributes

model_import_job_summaries class-attribute instance-attribute
model_import_job_summaries: list[ModelImportJobSummary] | None = None

Import 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, enter the token returned in the nextToken field in the response in this field to return the next batch of results.