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 { GetIngestConfigurationRequest, GetIngestConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetIngestConfigurationCommand}. */ export interface GetIngestConfigurationCommandInput extends GetIngestConfigurationRequest { } /** * @public * * The output of {@link GetIngestConfigurationCommand}. */ export interface GetIngestConfigurationCommandOutput extends GetIngestConfigurationResponse, __MetadataBearer { } declare const GetIngestConfigurationCommand_base: { new (input: GetIngestConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetIngestConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets information about the specified IngestConfiguration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IVSRealTimeClient, GetIngestConfigurationCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import * // const { IVSRealTimeClient, GetIngestConfigurationCommand } = 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 = { // GetIngestConfigurationRequest * arn: "STRING_VALUE", // required * }; * const command = new GetIngestConfigurationCommand(input); * const response = await client.send(command); * // { // GetIngestConfigurationResponse * // ingestConfiguration: { // IngestConfiguration * // name: "STRING_VALUE", * // arn: "STRING_VALUE", // required * // ingestProtocol: "RTMP" || "RTMPS", // required * // streamKey: "STRING_VALUE", // required * // stageArn: "STRING_VALUE", // required * // participantId: "STRING_VALUE", // required * // state: "STRING_VALUE", // required * // userId: "STRING_VALUE", * // redundantIngest: true || false, * // redundantIngestCredentials: [ // RedundantIngestCredentials * // { // RedundantIngestCredential * // participantId: "STRING_VALUE", * // streamKey: "STRING_VALUE", * // }, * // ], * // attributes: { // ParticipantAttributes * // "": "STRING_VALUE", * // }, * // tags: { // Tags * // "": "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param GetIngestConfigurationCommandInput - {@link GetIngestConfigurationCommandInput} * @returns {@link GetIngestConfigurationCommandOutput} * @see {@link GetIngestConfigurationCommandInput} for command's `input` shape. * @see {@link GetIngestConfigurationCommandOutput} for command's `response` shape. * @see {@link IVSRealTimeClientResolvedConfig | config} for IVSRealTimeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

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

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

* * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* * * @public */ export declare class GetIngestConfigurationCommand extends GetIngestConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetIngestConfigurationRequest; output: GetIngestConfigurationResponse; }; sdk: { input: GetIngestConfigurationCommandInput; output: GetIngestConfigurationCommandOutput; }; }; }