import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_4"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListPipelinesCommand}. */ export interface ListPipelinesCommandInput extends ListPipelinesRequest { } /** * @public * * The output of {@link ListPipelinesCommand}. */ export interface ListPipelinesCommandOutput extends ListPipelinesResponse, __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 list of pipelines.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, ListPipelinesCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, ListPipelinesCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // ListPipelinesRequest * PipelineNamePrefix: "STRING_VALUE", * CreatedAfter: new Date("TIMESTAMP"), * CreatedBefore: new Date("TIMESTAMP"), * SortBy: "Name" || "CreationTime", * SortOrder: "Ascending" || "Descending", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListPipelinesCommand(input); * const response = await client.send(command); * // { // ListPipelinesResponse * // PipelineSummaries: [ // PipelineSummaryList * // { // PipelineSummary * // PipelineArn: "STRING_VALUE", * // PipelineName: "STRING_VALUE", * // PipelineDisplayName: "STRING_VALUE", * // PipelineDescription: "STRING_VALUE", * // RoleArn: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // LastModifiedTime: new Date("TIMESTAMP"), * // LastExecutionTime: 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 SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

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