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

Deletes an Amazon SageMaker Model Card.

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

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

* * @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 DeleteModelCardCommand extends DeleteModelCardCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteModelCardRequest; output: {}; }; sdk: { input: DeleteModelCardCommandInput; output: DeleteModelCardCommandOutput; }; }; }