import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { MobileClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MobileClient"; import { DeleteProjectRequest, DeleteProjectResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteProjectCommand}. */ export interface DeleteProjectCommandInput extends DeleteProjectRequest { } /** * @public * * The output of {@link DeleteProjectCommand}. */ export interface DeleteProjectCommandOutput extends DeleteProjectResult, __MetadataBearer { } declare const DeleteProjectCommand_base: { new (input: DeleteProjectCommandInput): import("@smithy/smithy-client").CommandImpl; new (__0_0: DeleteProjectCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

* Delets a project in AWS Mobile Hub. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MobileClient, DeleteProjectCommand } from "@aws-sdk/client-mobile"; // ES Modules import * // const { MobileClient, DeleteProjectCommand } = require("@aws-sdk/client-mobile"); // CommonJS import * const client = new MobileClient(config); * const input = { // DeleteProjectRequest * projectId: "STRING_VALUE", // required * }; * const command = new DeleteProjectCommand(input); * const response = await client.send(command); * // { // DeleteProjectResult * // deletedResources: [ // Resources * // { // Resource * // type: "STRING_VALUE", * // name: "STRING_VALUE", * // arn: "STRING_VALUE", * // feature: "STRING_VALUE", * // attributes: { // Attributes * // "": "STRING_VALUE", * // }, * // }, * // ], * // orphanedResources: [ * // { * // type: "STRING_VALUE", * // name: "STRING_VALUE", * // arn: "STRING_VALUE", * // feature: "STRING_VALUE", * // attributes: { * // "": "STRING_VALUE", * // }, * // }, * // ], * // }; * * ``` * * @param DeleteProjectCommandInput - {@link DeleteProjectCommandInput} * @returns {@link DeleteProjectCommandOutput} * @see {@link DeleteProjectCommandInput} for command's `input` shape. * @see {@link DeleteProjectCommandOutput} for command's `response` shape. * @see {@link MobileClientResolvedConfig | config} for MobileClient's `config` shape. * * @throws {@link InternalFailureException} (server fault) *

* The service has encountered an unexpected error condition which prevents it from * servicing the request. *

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

* No entity can be found with the specified identifier. *

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

* The service is temporarily unavailable. The request should be retried after some * time delay. *

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

* Too many requests have been received for this AWS account in too short a time. The * request should be retried after some time delay. *

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

* Credentials of the caller are insufficient to authorize the request. *

* * @throws {@link MobileServiceException} *

Base exception class for all service exceptions from Mobile service.

* * @public */ export declare class DeleteProjectCommand extends DeleteProjectCommand_base { }