import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteHumanLoopRequest, DeleteHumanLoopResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteHumanLoopCommand}. */ export interface DeleteHumanLoopCommandInput extends DeleteHumanLoopRequest { } /** * @public * * The output of {@link DeleteHumanLoopCommand}. */ export interface DeleteHumanLoopCommandOutput extends DeleteHumanLoopResponse, __MetadataBearer { } declare const DeleteHumanLoopCommand_base: { new (input: DeleteHumanLoopCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteHumanLoopCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified human loop for a flow definition.

*

If the human loop was deleted, this operation will return a * ResourceNotFoundException.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerA2IRuntimeClient, DeleteHumanLoopCommand } from "@aws-sdk/client-sagemaker-a2i-runtime"; // ES Modules import * // const { SageMakerA2IRuntimeClient, DeleteHumanLoopCommand } = require("@aws-sdk/client-sagemaker-a2i-runtime"); // CommonJS import * // import type { SageMakerA2IRuntimeClientConfig } from "@aws-sdk/client-sagemaker-a2i-runtime"; * const config = {}; // type is SageMakerA2IRuntimeClientConfig * const client = new SageMakerA2IRuntimeClient(config); * const input = { // DeleteHumanLoopRequest * HumanLoopName: "STRING_VALUE", // required * }; * const command = new DeleteHumanLoopCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteHumanLoopCommandInput - {@link DeleteHumanLoopCommandInput} * @returns {@link DeleteHumanLoopCommandOutput} * @see {@link DeleteHumanLoopCommandInput} for command's `input` shape. * @see {@link DeleteHumanLoopCommandOutput} for command's `response` shape. * @see {@link SageMakerA2IRuntimeClientResolvedConfig | config} for SageMakerA2IRuntimeClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

We couldn't process your request because of an issue with the server. Try again * later.

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

We couldn't find the requested resource. Check that your resources exists and were created * in the same AWS Region as your request, and try your request again.

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

You exceeded * the * maximum number of requests.

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

The * request isn't valid. Check the syntax and try again.

* * @throws {@link SageMakerA2IRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerA2IRuntime service.

* * * @public */ export declare class DeleteHumanLoopCommand extends DeleteHumanLoopCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteHumanLoopRequest; output: {}; }; sdk: { input: DeleteHumanLoopCommandInput; output: DeleteHumanLoopCommandOutput; }; }; }