import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import type { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListPipelinesCommand}. */ export interface ListPipelinesCommandInput extends ListPipelinesInput { } /** * @public * * The output of {@link ListPipelinesCommand}. */ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __MetadataBearer { } declare const ListPipelinesCommand_base: { new (input: ListPipelinesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListPipelinesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets a summary of all of the pipelines associated with your account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodePipelineClient, ListPipelinesCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import * // const { CodePipelineClient, ListPipelinesCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import * // import type { CodePipelineClientConfig } from "@aws-sdk/client-codepipeline"; * const config = {}; // type is CodePipelineClientConfig * const client = new CodePipelineClient(config); * const input = { // ListPipelinesInput * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListPipelinesCommand(input); * const response = await client.send(command); * // { // ListPipelinesOutput * // pipelines: [ // PipelineList * // { // PipelineSummary * // name: "STRING_VALUE", * // version: Number("int"), * // pipelineType: "V1" || "V2", * // executionMode: "QUEUED" || "SUPERSEDED" || "PARALLEL", * // created: new Date("TIMESTAMP"), * // updated: new Date("TIMESTAMP"), * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListPipelinesCommandInput - {@link ListPipelinesCommandInput} * @returns {@link ListPipelinesCommandOutput} * @see {@link ListPipelinesCommandInput} for command's `input` shape. * @see {@link ListPipelinesCommandOutput} for command's `response` shape. * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape. * * @throws {@link InvalidNextTokenException} (client fault) *

The next token was specified in an invalid format. Make sure that the next token * you provide is the token returned by a previous call.

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

The validation was specified in an invalid format.

* * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* * * @public */ export declare class ListPipelinesCommand extends ListPipelinesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPipelinesInput; output: ListPipelinesOutput; }; sdk: { input: ListPipelinesCommandInput; output: ListPipelinesCommandOutput; }; }; }