import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; import type { UpdateClassificationScopeRequest, UpdateClassificationScopeResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateClassificationScopeCommand}. */ export interface UpdateClassificationScopeCommandInput extends UpdateClassificationScopeRequest { } /** * @public * * The output of {@link UpdateClassificationScopeCommand}. */ export interface UpdateClassificationScopeCommandOutput extends UpdateClassificationScopeResponse, __MetadataBearer { } declare const UpdateClassificationScopeCommand_base: { new (input: UpdateClassificationScopeCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateClassificationScopeCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Updates the classification scope settings for an account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Macie2Client, UpdateClassificationScopeCommand } from "@aws-sdk/client-macie2"; // ES Modules import * // const { Macie2Client, UpdateClassificationScopeCommand } = require("@aws-sdk/client-macie2"); // CommonJS import * // import type { Macie2ClientConfig } from "@aws-sdk/client-macie2"; * const config = {}; // type is Macie2ClientConfig * const client = new Macie2Client(config); * const input = { // UpdateClassificationScopeRequest * id: "STRING_VALUE", // required * s3: { // S3ClassificationScopeUpdate * excludes: { // S3ClassificationScopeExclusionUpdate * bucketNames: [ // __listOfS3BucketName // required * "STRING_VALUE", * ], * operation: "ADD" || "REPLACE" || "REMOVE", // required * }, * }, * }; * const command = new UpdateClassificationScopeCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateClassificationScopeCommandInput - {@link UpdateClassificationScopeCommandInput} * @returns {@link UpdateClassificationScopeCommandOutput} * @see {@link UpdateClassificationScopeCommandInput} for command's `input` shape. * @see {@link UpdateClassificationScopeCommandOutput} for command's `response` shape. * @see {@link Macie2ClientResolvedConfig | config} for Macie2Client's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Provides information about an error that occurred due to insufficient access to a specified resource.

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

Provides information about an error that occurred due to an unknown internal server error, exception, or failure.

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

Provides information about an error that occurred because a specified resource wasn't found.

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

Provides information about an error that occurred because too many requests were sent during a certain amount of time.

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

Provides information about an error that occurred due to a syntax error in a request.

* * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* * * @public */ export declare class UpdateClassificationScopeCommand extends UpdateClassificationScopeCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateClassificationScopeRequest; output: {}; }; sdk: { input: UpdateClassificationScopeCommandInput; output: UpdateClassificationScopeCommandOutput; }; }; }