import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteAssetRequest } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteAssetCommand}. */ export interface DeleteAssetCommandInput extends DeleteAssetRequest { } /** * @public * * The output of {@link DeleteAssetCommand}. */ export interface DeleteAssetCommandOutput extends __MetadataBearer { } declare const DeleteAssetCommand_base: { new (input: DeleteAssetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteAssetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

This operation deletes an asset.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataExchangeClient, DeleteAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import * // const { DataExchangeClient, DeleteAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import * // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange"; * const config = {}; // type is DataExchangeClientConfig * const client = new DataExchangeClient(config); * const input = { // DeleteAssetRequest * AssetId: "STRING_VALUE", // required * DataSetId: "STRING_VALUE", // required * RevisionId: "STRING_VALUE", // required * }; * const command = new DeleteAssetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteAssetCommandInput - {@link DeleteAssetCommandInput} * @returns {@link DeleteAssetCommandOutput} * @see {@link DeleteAssetCommandInput} for command's `input` shape. * @see {@link DeleteAssetCommandOutput} for command's `response` shape. * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to the resource is denied.

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

The request couldn't be completed because it conflicted with the current state of the resource.

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

An exception occurred with the service.

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

The resource couldn't be found.

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

The limit on the number of requests per second was exceeded.

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

The request was invalid.

* * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* * * @public */ export declare class DeleteAssetCommand extends DeleteAssetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAssetRequest; output: {}; }; sdk: { input: DeleteAssetCommandInput; output: DeleteAssetCommandOutput; }; }; }