import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListProvisionedModelThroughputsRequest, ListProvisionedModelThroughputsResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListProvisionedModelThroughputsCommand}. */ export interface ListProvisionedModelThroughputsCommandInput extends ListProvisionedModelThroughputsRequest { } /** * @public * * The output of {@link ListProvisionedModelThroughputsCommand}. */ export interface ListProvisionedModelThroughputsCommandOutput extends ListProvisionedModelThroughputsResponse, __MetadataBearer { } declare const ListProvisionedModelThroughputsCommand_base: { new (input: ListProvisionedModelThroughputsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListProvisionedModelThroughputsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

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

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BedrockClient, ListProvisionedModelThroughputsCommand } from "@aws-sdk/client-bedrock"; // ES Modules import * // const { BedrockClient, ListProvisionedModelThroughputsCommand } = require("@aws-sdk/client-bedrock"); // CommonJS import * // import type { BedrockClientConfig } from "@aws-sdk/client-bedrock"; * const config = {}; // type is BedrockClientConfig * const client = new BedrockClient(config); * const input = { // ListProvisionedModelThroughputsRequest * creationTimeAfter: new Date("TIMESTAMP"), * creationTimeBefore: new Date("TIMESTAMP"), * statusEquals: "Creating" || "InService" || "Updating" || "Failed", * modelArnEquals: "STRING_VALUE", * nameContains: "STRING_VALUE", * maxResults: Number("int"), * nextToken: "STRING_VALUE", * sortBy: "CreationTime", * sortOrder: "Ascending" || "Descending", * }; * const command = new ListProvisionedModelThroughputsCommand(input); * const response = await client.send(command); * // { // ListProvisionedModelThroughputsResponse * // nextToken: "STRING_VALUE", * // provisionedModelSummaries: [ // ProvisionedModelSummaries * // { // ProvisionedModelSummary * // provisionedModelName: "STRING_VALUE", // required * // provisionedModelArn: "STRING_VALUE", // required * // modelArn: "STRING_VALUE", // required * // desiredModelArn: "STRING_VALUE", // required * // foundationModelArn: "STRING_VALUE", // required * // modelUnits: Number("int"), // required * // desiredModelUnits: Number("int"), // required * // status: "Creating" || "InService" || "Updating" || "Failed", // required * // commitmentDuration: "OneMonth" || "SixMonths", * // commitmentExpirationTime: new Date("TIMESTAMP"), * // creationTime: new Date("TIMESTAMP"), // required * // lastModifiedTime: new Date("TIMESTAMP"), // required * // }, * // ], * // }; * * ``` * * @param ListProvisionedModelThroughputsCommandInput - {@link ListProvisionedModelThroughputsCommandInput} * @returns {@link ListProvisionedModelThroughputsCommandOutput} * @see {@link ListProvisionedModelThroughputsCommandInput} for command's `input` shape. * @see {@link ListProvisionedModelThroughputsCommandOutput} for command's `response` shape. * @see {@link BedrockClientResolvedConfig | config} for BedrockClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The request is denied because of missing access permissions.

* * @throws {@link InternalServerException} (server fault) *

An internal server error occurred. Retry your request.

* * @throws {@link ThrottlingException} (client fault) *

The number of requests exceeds the limit. Resubmit your request later.

* * @throws {@link ValidationException} (client fault) *

Input validation failed. Check your request parameters and retry the request.

* * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* * * @public */ export declare class ListProvisionedModelThroughputsCommand extends ListProvisionedModelThroughputsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListProvisionedModelThroughputsRequest; output: ListProvisionedModelThroughputsResponse; }; sdk: { input: ListProvisionedModelThroughputsCommandInput; output: ListProvisionedModelThroughputsCommandOutput; }; }; }