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

Modifies the settings of an Aurora Limitless Database DB shard group. You can change one or more settings by specifying these parameters and the new values in the request.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, ModifyDBShardGroupCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, ModifyDBShardGroupCommand } = 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 = { // ModifyDBShardGroupMessage * DBShardGroupIdentifier: "STRING_VALUE", // required * MaxACU: Number("double"), * MinACU: Number("double"), * ComputeRedundancy: Number("int"), * }; * const command = new ModifyDBShardGroupCommand(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 ModifyDBShardGroupCommandInput - {@link ModifyDBShardGroupCommandInput} * @returns {@link ModifyDBShardGroupCommandOutput} * @see {@link ModifyDBShardGroupCommandInput} for command's `input` shape. * @see {@link ModifyDBShardGroupCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBShardGroupAlreadyExistsFault} (client fault) *

The specified DB shard group name must be unique in your Amazon Web Services account in the specified Amazon Web Services Region.

* * @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 RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class ModifyDBShardGroupCommand extends ModifyDBShardGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyDBShardGroupMessage; output: DBShardGroup; }; sdk: { input: ModifyDBShardGroupCommandInput; output: ModifyDBShardGroupCommandOutput; }; }; }