import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import type { CancelBundleTaskRequest, CancelBundleTaskResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CancelBundleTaskCommand}. */ export interface CancelBundleTaskCommandInput extends CancelBundleTaskRequest { } /** * @public * * The output of {@link CancelBundleTaskCommand}. */ export interface CancelBundleTaskCommandOutput extends CancelBundleTaskResult, __MetadataBearer { } declare const CancelBundleTaskCommand_base: { new (input: CancelBundleTaskCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CancelBundleTaskCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Cancels a bundling operation for an instance store-backed Windows instance.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, CancelBundleTaskCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, CancelBundleTaskCommand } = require("@aws-sdk/client-ec2"); // CommonJS import * // import type { EC2ClientConfig } from "@aws-sdk/client-ec2"; * const config = {}; // type is EC2ClientConfig * const client = new EC2Client(config); * const input = { // CancelBundleTaskRequest * BundleId: "STRING_VALUE", // required * DryRun: true || false, * }; * const command = new CancelBundleTaskCommand(input); * const response = await client.send(command); * // { // CancelBundleTaskResult * // BundleTask: { // BundleTask * // InstanceId: "STRING_VALUE", * // BundleId: "STRING_VALUE", * // State: "pending" || "waiting-for-shutdown" || "bundling" || "storing" || "cancelling" || "complete" || "failed", * // StartTime: new Date("TIMESTAMP"), * // UpdateTime: new Date("TIMESTAMP"), * // Storage: { // Storage * // S3: { // S3Storage * // AWSAccessKeyId: "STRING_VALUE", * // Bucket: "STRING_VALUE", * // Prefix: "STRING_VALUE", * // UploadPolicy: new Uint8Array(), * // UploadPolicySignature: "STRING_VALUE", * // }, * // }, * // Progress: "STRING_VALUE", * // BundleTaskError: { // BundleTaskError * // Code: "STRING_VALUE", * // Message: "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param CancelBundleTaskCommandInput - {@link CancelBundleTaskCommandInput} * @returns {@link CancelBundleTaskCommandOutput} * @see {@link CancelBundleTaskCommandInput} for command's `input` shape. * @see {@link CancelBundleTaskCommandOutput} for command's `response` shape. * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape. * * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* * * @public */ export declare class CancelBundleTaskCommand extends CancelBundleTaskCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CancelBundleTaskRequest; output: CancelBundleTaskResult; }; sdk: { input: CancelBundleTaskCommandInput; output: CancelBundleTaskCommandOutput; }; }; }