Skip to content

Bedrock  >  Operations  >  list_custom_models

list_custom_models

Operation

list_custom_models async

list_custom_models(input: ListCustomModelsInput, plugins: list[Plugin] | None = None) -> ListCustomModelsOutput

Returns a list of the custom models that you have created with the CreateModelCustomizationJob operation.

For more information, see Custom models in the Amazon Bedrock User Guide.

Parameters:

Name Type Description Default
input ListCustomModelsInput

An instance of ListCustomModelsInput.

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
ListCustomModelsOutput

An instance of ListCustomModelsOutput.

Input

ListCustomModelsInput dataclass

Dataclass for ListCustomModelsInput structure.

Attributes

base_model_arn_equals class-attribute instance-attribute
base_model_arn_equals: str | None = None

Return custom models only if the base model Amazon Resource Name (ARN) matches this parameter.

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

Return custom models created after the specified time.

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

Return custom models created before the specified time.

foundation_model_arn_equals class-attribute instance-attribute
foundation_model_arn_equals: str | None = None

Return custom models only if the foundation model Amazon Resource Name (ARN) matches this parameter.

is_owned class-attribute instance-attribute
is_owned: bool | None = None

Return custom models depending on if the current account owns them (true) or if they were shared with the current account (false).

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.

model_status class-attribute instance-attribute
model_status: ModelStatus | None = None

The status of them model to filter results by. Possible values include:

  • Creating - Include only models that are currently being created and validated.

  • Active - Include only models that have been successfully created and are ready for use.

  • Failed - Include only models where the creation process failed.

If you don't specify a status, the API returns models in all states.

name_contains class-attribute instance-attribute
name_contains: str | None = None

Return custom models 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: SortModelsBy | None = None

The field to sort by in the returned list of models.

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

The sort order of the results.

Output

ListCustomModelsOutput dataclass

Dataclass for ListCustomModelsOutput structure.

Attributes

model_summaries class-attribute instance-attribute
model_summaries: list[CustomModelSummary] | None = None

Model 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.