Skip to content

Bedrock  >  Operations  >  list_provisioned_model_throughputs

list_provisioned_model_throughputs

Operation

list_provisioned_model_throughputs async

list_provisioned_model_throughputs(input: ListProvisionedModelThroughputsInput, plugins: list[Plugin] | None = None) -> ListProvisionedModelThroughputsOutput

Lists the Provisioned Throughputs in the account. For more information, see Provisioned Throughput in the Amazon Bedrock User Guide.

Parameters:

Name Type Description Default
input ListProvisionedModelThroughputsInput

An instance of ListProvisionedModelThroughputsInput.

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
ListProvisionedModelThroughputsOutput

An instance of ListProvisionedModelThroughputsOutput.

Input

ListProvisionedModelThroughputsInput dataclass

Dataclass for ListProvisionedModelThroughputsInput structure.

Attributes

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

A filter that returns Provisioned Throughputs created after the specified time.

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

A filter that returns Provisioned Throughputs 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 there are more results than the number you specified, the response returns a nextToken value. To see the next batch of results, send the nextToken value in another list request.

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

A filter that returns Provisioned Throughputs whose model Amazon Resource Name (ARN) is equal to the value that you specify.

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

A filter that returns Provisioned Throughputs if their name contains the expression that you specify.

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

If there are more results than the number you specified in the maxResults field, the response returns a nextToken value. To see the next batch of results, specify the nextToken value in this field.

sort_by class-attribute instance-attribute
sort_by: SortByProvisionedModels | None = None

The field by which to sort the returned list of Provisioned Throughputs.

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: ProvisionedModelStatus | None = None

A filter that returns Provisioned Throughputs if their statuses matches the value that you specify.

Output

ListProvisionedModelThroughputsOutput dataclass

Dataclass for ListProvisionedModelThroughputsOutput structure.

Attributes

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

If there are more results than the number you specified in the maxResults field, this value is returned. To see the next batch of results, include this value in the nextToken field in another list request.

provisioned_model_summaries class-attribute instance-attribute
provisioned_model_summaries: list[ProvisionedModelSummary] | None = None

A list of summaries, one for each Provisioned Throughput in the response.