import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListMediaInsightsPipelineConfigurationsRequest, ListMediaInsightsPipelineConfigurationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListMediaInsightsPipelineConfigurationsCommand}. */ export interface ListMediaInsightsPipelineConfigurationsCommandInput extends ListMediaInsightsPipelineConfigurationsRequest { } /** * @public * * The output of {@link ListMediaInsightsPipelineConfigurationsCommand}. */ export interface ListMediaInsightsPipelineConfigurationsCommandOutput extends ListMediaInsightsPipelineConfigurationsResponse, __MetadataBearer { } declare const ListMediaInsightsPipelineConfigurationsCommand_base: { new (input: ListMediaInsightsPipelineConfigurationsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListMediaInsightsPipelineConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the available media insights pipeline configurations.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ChimeSDKMediaPipelinesClient, ListMediaInsightsPipelineConfigurationsCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import * // const { ChimeSDKMediaPipelinesClient, ListMediaInsightsPipelineConfigurationsCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import * // import type { ChimeSDKMediaPipelinesClientConfig } from "@aws-sdk/client-chime-sdk-media-pipelines"; * const config = {}; // type is ChimeSDKMediaPipelinesClientConfig * const client = new ChimeSDKMediaPipelinesClient(config); * const input = { // ListMediaInsightsPipelineConfigurationsRequest * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListMediaInsightsPipelineConfigurationsCommand(input); * const response = await client.send(command); * // { // ListMediaInsightsPipelineConfigurationsResponse * // MediaInsightsPipelineConfigurations: [ // MediaInsightsPipelineConfigurationSummaryList * // { // MediaInsightsPipelineConfigurationSummary * // MediaInsightsPipelineConfigurationName: "STRING_VALUE", * // MediaInsightsPipelineConfigurationId: "STRING_VALUE", * // MediaInsightsPipelineConfigurationArn: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListMediaInsightsPipelineConfigurationsCommandInput - {@link ListMediaInsightsPipelineConfigurationsCommandInput} * @returns {@link ListMediaInsightsPipelineConfigurationsCommandOutput} * @see {@link ListMediaInsightsPipelineConfigurationsCommandInput} for command's `input` shape. * @see {@link ListMediaInsightsPipelineConfigurationsCommandOutput} for command's `response` shape. * @see {@link ChimeSDKMediaPipelinesClientResolvedConfig | config} for ChimeSDKMediaPipelinesClient's `config` shape. * * @throws {@link BadRequestException} (client fault) *

The input parameters don't match the service's restrictions.

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

The client is permanently forbidden from making the request.

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

The request exceeds the resource limit.

* * @throws {@link ServiceFailureException} (server fault) *

The service encountered an unexpected error.

* * @throws {@link ServiceUnavailableException} (server fault) *

The service is currently unavailable.

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

The client exceeded its request rate limit.

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

The client is not currently authorized to make the request.

* * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* * * @public */ export declare class ListMediaInsightsPipelineConfigurationsCommand extends ListMediaInsightsPipelineConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListMediaInsightsPipelineConfigurationsRequest; output: ListMediaInsightsPipelineConfigurationsResponse; }; sdk: { input: ListMediaInsightsPipelineConfigurationsCommandInput; output: ListMediaInsightsPipelineConfigurationsCommandOutput; }; }; }