import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListPipesRequest, ListPipesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListPipesCommand}. */ export interface ListPipesCommandInput extends ListPipesRequest { } /** * @public * * The output of {@link ListPipesCommand}. */ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBearer { } declare const ListPipesCommand_base: { new (input: ListPipesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListPipesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Get the pipes associated with this account. For more information about pipes, see Amazon EventBridge Pipes in the Amazon EventBridge User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { PipesClient, ListPipesCommand } from "@aws-sdk/client-pipes"; // ES Modules import * // const { PipesClient, ListPipesCommand } = require("@aws-sdk/client-pipes"); // CommonJS import * // import type { PipesClientConfig } from "@aws-sdk/client-pipes"; * const config = {}; // type is PipesClientConfig * const client = new PipesClient(config); * const input = { // ListPipesRequest * NamePrefix: "STRING_VALUE", * DesiredState: "STRING_VALUE", * CurrentState: "STRING_VALUE", * SourcePrefix: "STRING_VALUE", * TargetPrefix: "STRING_VALUE", * NextToken: "STRING_VALUE", * Limit: Number("int"), * }; * const command = new ListPipesCommand(input); * const response = await client.send(command); * // { // ListPipesResponse * // Pipes: [ // PipeList * // { // Pipe * // Name: "STRING_VALUE", * // Arn: "STRING_VALUE", * // DesiredState: "STRING_VALUE", * // CurrentState: "STRING_VALUE", * // StateReason: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // LastModifiedTime: new Date("TIMESTAMP"), * // Source: "STRING_VALUE", * // Target: "STRING_VALUE", * // Enrichment: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListPipesCommandInput - {@link ListPipesCommandInput} * @returns {@link ListPipesCommandOutput} * @see {@link ListPipesCommandInput} for command's `input` shape. * @see {@link ListPipesCommandOutput} for command's `response` shape. * @see {@link PipesClientResolvedConfig | config} for PipesClient's `config` shape. * * @throws {@link InternalException} (server fault) *

This exception occurs due to unexpected causes.

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

An action was throttled.

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

Indicates that an error has occurred while performing a validate operation.

* * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* * * @public */ export declare class ListPipesCommand extends ListPipesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPipesRequest; output: ListPipesResponse; }; sdk: { input: ListPipesCommandInput; output: ListPipesCommandOutput; }; }; }