import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteHumanTaskUiRequest, DeleteHumanTaskUiResponse } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteHumanTaskUiCommand}. */ export interface DeleteHumanTaskUiCommandInput extends DeleteHumanTaskUiRequest { } /** * @public * * The output of {@link DeleteHumanTaskUiCommand}. */ export interface DeleteHumanTaskUiCommandOutput extends DeleteHumanTaskUiResponse, __MetadataBearer { } declare const DeleteHumanTaskUiCommand_base: { new (input: DeleteHumanTaskUiCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteHumanTaskUiCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Use this operation to delete a human task user interface (worker task template).

To see a list of human task user interfaces (work task templates) in your account, use ListHumanTaskUis. When you delete a worker task template, it no longer appears when you call ListHumanTaskUis.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeleteHumanTaskUiCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeleteHumanTaskUiCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DeleteHumanTaskUiRequest * HumanTaskUiName: "STRING_VALUE", // required * }; * const command = new DeleteHumanTaskUiCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteHumanTaskUiCommandInput - {@link DeleteHumanTaskUiCommandInput} * @returns {@link DeleteHumanTaskUiCommandOutput} * @see {@link DeleteHumanTaskUiCommandInput} for command's `input` shape. * @see {@link DeleteHumanTaskUiCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DeleteHumanTaskUiCommand extends DeleteHumanTaskUiCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteHumanTaskUiRequest; output: {}; }; sdk: { input: DeleteHumanTaskUiCommandInput; output: DeleteHumanTaskUiCommandOutput; }; }; }