import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; import type { ListIngestConfigurationsRequest, ListIngestConfigurationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListIngestConfigurationsCommand}. */ export interface ListIngestConfigurationsCommandInput extends ListIngestConfigurationsRequest { } /** * @public * * The output of {@link ListIngestConfigurationsCommand}. */ export interface ListIngestConfigurationsCommandOutput extends ListIngestConfigurationsResponse, __MetadataBearer { } declare const ListIngestConfigurationsCommand_base: { new (input: ListIngestConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListIngestConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists all IngestConfigurations in your account, in the AWS region where the API request is processed.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IVSRealTimeClient, ListIngestConfigurationsCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import * // const { IVSRealTimeClient, ListIngestConfigurationsCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import * // import type { IVSRealTimeClientConfig } from "@aws-sdk/client-ivs-realtime"; * const config = {}; // type is IVSRealTimeClientConfig * const client = new IVSRealTimeClient(config); * const input = { // ListIngestConfigurationsRequest * filterByStageArn: "STRING_VALUE", * filterByState: "STRING_VALUE", * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListIngestConfigurationsCommand(input); * const response = await client.send(command); * // { // ListIngestConfigurationsResponse * // ingestConfigurations: [ // IngestConfigurationList // required * // { // IngestConfigurationSummary * // name: "STRING_VALUE", * // arn: "STRING_VALUE", // required * // ingestProtocol: "RTMP" || "RTMPS", // required * // stageArn: "STRING_VALUE", // required * // participantId: "STRING_VALUE", // required * // state: "STRING_VALUE", // required * // userId: "STRING_VALUE", * // redundantIngest: true || false, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListIngestConfigurationsCommandInput - {@link ListIngestConfigurationsCommandInput} * @returns {@link ListIngestConfigurationsCommandOutput} * @see {@link ListIngestConfigurationsCommandInput} for command's `input` shape. * @see {@link ListIngestConfigurationsCommandOutput} for command's `response` shape. * @see {@link IVSRealTimeClientResolvedConfig | config} for IVSRealTimeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

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

* * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* * * @public */ export declare class ListIngestConfigurationsCommand extends ListIngestConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListIngestConfigurationsRequest; output: ListIngestConfigurationsResponse; }; sdk: { input: ListIngestConfigurationsCommandInput; output: ListIngestConfigurationsCommandOutput; }; }; }