import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteDataTransformationProfileRequest, DeleteDataTransformationProfileResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteDataTransformationProfileCommand}. */ export interface DeleteDataTransformationProfileCommandInput extends DeleteDataTransformationProfileRequest { } /** * @public * * The output of {@link DeleteDataTransformationProfileCommand}. */ export interface DeleteDataTransformationProfileCommandOutput extends DeleteDataTransformationProfileResponse, __MetadataBearer { } declare const DeleteDataTransformationProfileCommand_base: { new (input: DeleteDataTransformationProfileCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteDataTransformationProfileCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a data transformation profile and all its versions, including the DRAFT and all published versions.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { HealthLakeClient, DeleteDataTransformationProfileCommand } from "@aws-sdk/client-healthlake"; // ES Modules import * // const { HealthLakeClient, DeleteDataTransformationProfileCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import * // import type { HealthLakeClientConfig } from "@aws-sdk/client-healthlake"; * const config = {}; // type is HealthLakeClientConfig * const client = new HealthLakeClient(config); * const input = { // DeleteDataTransformationProfileRequest * ProfileId: "STRING_VALUE", // required * }; * const command = new DeleteDataTransformationProfileCommand(input); * const response = await client.send(command); * // { // DeleteDataTransformationProfileResponse * // ProfileId: "STRING_VALUE", // required * // ProfileName: "STRING_VALUE", * // DeletionTime: new Date("TIMESTAMP"), // required * // }; * * ``` * * @param DeleteDataTransformationProfileCommandInput - {@link DeleteDataTransformationProfileCommandInput} * @returns {@link DeleteDataTransformationProfileCommandOutput} * @see {@link DeleteDataTransformationProfileCommandInput} for command's `input` shape. * @see {@link DeleteDataTransformationProfileCommandOutput} for command's `response` shape. * @see {@link HealthLakeClientResolvedConfig | config} for HealthLakeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access is denied. Your account is not authorized to perform this operation.

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

An unknown internal error occurred in the service.

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

The requested data store was not found.

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

The user has exceeded their maximum number of allowed calls to the given API.

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

The user input parameter was invalid.

* * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* * * @public */ export declare class DeleteDataTransformationProfileCommand extends DeleteDataTransformationProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDataTransformationProfileRequest; output: DeleteDataTransformationProfileResponse; }; sdk: { input: DeleteDataTransformationProfileCommandInput; output: DeleteDataTransformationProfileCommandOutput; }; }; }