import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { DeleteFieldLevelEncryptionConfigRequest } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteFieldLevelEncryptionConfigCommand}. */ export interface DeleteFieldLevelEncryptionConfigCommandInput extends DeleteFieldLevelEncryptionConfigRequest { } /** * @public * * The output of {@link DeleteFieldLevelEncryptionConfigCommand}. */ export interface DeleteFieldLevelEncryptionConfigCommandOutput extends __MetadataBearer { } declare const DeleteFieldLevelEncryptionConfigCommand_base: { new (input: DeleteFieldLevelEncryptionConfigCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteFieldLevelEncryptionConfigCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Remove a field-level encryption configuration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, DeleteFieldLevelEncryptionConfigCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, DeleteFieldLevelEncryptionConfigCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // DeleteFieldLevelEncryptionConfigRequest * Id: "STRING_VALUE", // required * IfMatch: "STRING_VALUE", * }; * const command = new DeleteFieldLevelEncryptionConfigCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteFieldLevelEncryptionConfigCommandInput - {@link DeleteFieldLevelEncryptionConfigCommandInput} * @returns {@link DeleteFieldLevelEncryptionConfigCommandOutput} * @see {@link DeleteFieldLevelEncryptionConfigCommandInput} for command's `input` shape. * @see {@link DeleteFieldLevelEncryptionConfigCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

The specified configuration for field-level encryption is in use.

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

The If-Match version is missing or not valid.

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

The specified configuration for field-level encryption doesn't exist.

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

The precondition in one or more of the request fields evaluated to false.

* * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* * * @public */ export declare class DeleteFieldLevelEncryptionConfigCommand extends DeleteFieldLevelEncryptionConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteFieldLevelEncryptionConfigRequest; output: {}; }; sdk: { input: DeleteFieldLevelEncryptionConfigCommandInput; output: DeleteFieldLevelEncryptionConfigCommandOutput; }; }; }