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

Deletes a specified IngestConfiguration, so it can no longer be used to broadcast. An IngestConfiguration cannot be deleted if the publisher is actively streaming to a stage, unless force is set to true.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IVSRealTimeClient, DeleteIngestConfigurationCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import * // const { IVSRealTimeClient, DeleteIngestConfigurationCommand } = 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 = { // DeleteIngestConfigurationRequest * arn: "STRING_VALUE", // required * force: true || false, * }; * const command = new DeleteIngestConfigurationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteIngestConfigurationCommandInput - {@link DeleteIngestConfigurationCommandInput} * @returns {@link DeleteIngestConfigurationCommandOutput} * @see {@link DeleteIngestConfigurationCommandInput} for command's `input` shape. * @see {@link DeleteIngestConfigurationCommandOutput} for command's `response` shape. * @see {@link IVSRealTimeClientResolvedConfig | config} for IVSRealTimeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

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

* * @throws {@link PendingVerification} (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 DeleteIngestConfigurationCommand extends DeleteIngestConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteIngestConfigurationRequest; output: {}; }; sdk: { input: DeleteIngestConfigurationCommandInput; output: DeleteIngestConfigurationCommandOutput; }; }; }