import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DBShardGroup, DeleteDBShardGroupMessage } from "../models/models_0"; import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteDBShardGroupCommand}. */ export interface DeleteDBShardGroupCommandInput extends DeleteDBShardGroupMessage { } /** * @public * * The output of {@link DeleteDBShardGroupCommand}. */ export interface DeleteDBShardGroupCommandOutput extends DBShardGroup, __MetadataBearer { } declare const DeleteDBShardGroupCommand_base: { new (input: DeleteDBShardGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteDBShardGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Deletes an Aurora Limitless Database DB shard group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DeleteDBShardGroupCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DeleteDBShardGroupCommand } = require("@aws-sdk/client-rds"); // CommonJS import * // import type { RDSClientConfig } from "@aws-sdk/client-rds"; * const config = {}; // type is RDSClientConfig * const client = new RDSClient(config); * const input = { // DeleteDBShardGroupMessage * DBShardGroupIdentifier: "STRING_VALUE", // required * }; * const command = new DeleteDBShardGroupCommand(input); * const response = await client.send(command); * // { // DBShardGroup * // DBShardGroupResourceId: "STRING_VALUE", * // DBShardGroupIdentifier: "STRING_VALUE", * // DBClusterIdentifier: "STRING_VALUE", * // MaxACU: Number("double"), * // MinACU: Number("double"), * // ComputeRedundancy: Number("int"), * // Status: "STRING_VALUE", * // PubliclyAccessible: true || false, * // Endpoint: "STRING_VALUE", * // DBShardGroupArn: "STRING_VALUE", * // TagList: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DeleteDBShardGroupCommandInput - {@link DeleteDBShardGroupCommandInput} * @returns {@link DeleteDBShardGroupCommandOutput} * @see {@link DeleteDBShardGroupCommandInput} for command's `input` shape. * @see {@link DeleteDBShardGroupCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBShardGroupNotFoundFault} (client fault) *

The specified DB shard group name wasn't found.

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

The requested operation can't be performed while the cluster is in this state.

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

The DB shard group must be in the available state.

* * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class DeleteDBShardGroupCommand extends DeleteDBShardGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDBShardGroupMessage; output: DBShardGroup; }; sdk: { input: DeleteDBShardGroupCommandInput; output: DeleteDBShardGroupCommandOutput; }; }; }