import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; import type { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListProjectsCommand}. */ export interface ListProjectsCommandInput extends ListProjectsRequest { } /** * @public * * The output of {@link ListProjectsCommand}. */ export interface ListProjectsCommandOutput extends ListProjectsResponse, __MetadataBearer { } declare const ListProjectsCommand_base: { new (input: ListProjectsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListProjectsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns configuration details about all the projects in the current Region in your account.

* * @deprecated AWS CloudWatch Evidently has been deprecated since 11/17/2025. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EvidentlyClient, ListProjectsCommand } from "@aws-sdk/client-evidently"; // ES Modules import * // const { EvidentlyClient, ListProjectsCommand } = require("@aws-sdk/client-evidently"); // CommonJS import * // import type { EvidentlyClientConfig } from "@aws-sdk/client-evidently"; * const config = {}; // type is EvidentlyClientConfig * const client = new EvidentlyClient(config); * const input = { // ListProjectsRequest * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListProjectsCommand(input); * const response = await client.send(command); * // { // ListProjectsResponse * // projects: [ // ProjectSummariesList * // { // ProjectSummary * // arn: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // status: "STRING_VALUE", // required * // description: "STRING_VALUE", * // createdTime: new Date("TIMESTAMP"), // required * // lastUpdatedTime: new Date("TIMESTAMP"), // required * // featureCount: Number("long"), * // launchCount: Number("long"), * // activeLaunchCount: Number("long"), * // experimentCount: Number("long"), * // activeExperimentCount: Number("long"), * // tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListProjectsCommandInput - {@link ListProjectsCommandInput} * @returns {@link ListProjectsCommandOutput} * @see {@link ListProjectsCommandInput} for command's `input` shape. * @see {@link ListProjectsCommandOutput} for command's `response` shape. * @see {@link EvidentlyClientResolvedConfig | config} for EvidentlyClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient permissions to perform this action.

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

The request was denied because of request throttling. Retry the request.

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

The value of a parameter in the request caused an error.

* * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* * * @public */ export declare class ListProjectsCommand extends ListProjectsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListProjectsRequest; output: ListProjectsResponse; }; sdk: { input: ListProjectsCommandInput; output: ListProjectsCommandOutput; }; }; }