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

Deletes the storage configuration for the specified ARN.

*

If you try to delete a storage configuration that is used by a Composition, you will get an error (409 ConflictException). * To avoid this, for all Compositions that reference the storage configuration, first use StopComposition and wait for it to complete, * then use DeleteStorageConfiguration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IVSRealTimeClient, DeleteStorageConfigurationCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import * // const { IVSRealTimeClient, DeleteStorageConfigurationCommand } = 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 = { // DeleteStorageConfigurationRequest * arn: "STRING_VALUE", // required * }; * const command = new DeleteStorageConfigurationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteStorageConfigurationCommandInput - {@link DeleteStorageConfigurationCommandInput} * @returns {@link DeleteStorageConfigurationCommandOutput} * @see {@link DeleteStorageConfigurationCommandInput} for command's `input` shape. * @see {@link DeleteStorageConfigurationCommandOutput} 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 InternalServerException} (server fault) *

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

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

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

* * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* * * @public */ export declare class DeleteStorageConfigurationCommand extends DeleteStorageConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteStorageConfigurationRequest; output: {}; }; sdk: { input: DeleteStorageConfigurationCommandInput; output: DeleteStorageConfigurationCommandOutput; }; }; }