import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import type { EnableSnapshotBlockPublicAccessRequest, EnableSnapshotBlockPublicAccessResult } from "../models/models_5"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link EnableSnapshotBlockPublicAccessCommand}. */ export interface EnableSnapshotBlockPublicAccessCommandInput extends EnableSnapshotBlockPublicAccessRequest { } /** * @public * * The output of {@link EnableSnapshotBlockPublicAccessCommand}. */ export interface EnableSnapshotBlockPublicAccessCommandOutput extends EnableSnapshotBlockPublicAccessResult, __MetadataBearer { } declare const EnableSnapshotBlockPublicAccessCommand_base: { new (input: EnableSnapshotBlockPublicAccessCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: EnableSnapshotBlockPublicAccessCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Enables or modifies the block public access for snapshots * setting at the account level for the specified Amazon Web Services Region. After you enable block * public access for snapshots in a Region, users can no longer request public sharing * for snapshots in that Region. Snapshots that are already publicly shared are either * treated as private or they remain publicly shared, depending on the * State that you specify.

* *

Enabling block public access for snapshots in block all sharing * mode does not change the permissions for snapshots that are already publicly shared. * Instead, it prevents these snapshots from be publicly visible and publicly accessible. * Therefore, the attributes for these snapshots still indicate that they are publicly * shared, even though they are not publicly available.

*

If you later disable block public access or change the mode to block new * sharing, these snapshots will become publicly available again.

*
*

For more information, see * Block public access for snapshots in the Amazon EBS User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, EnableSnapshotBlockPublicAccessCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, EnableSnapshotBlockPublicAccessCommand } = require("@aws-sdk/client-ec2"); // CommonJS import * // import type { EC2ClientConfig } from "@aws-sdk/client-ec2"; * const config = {}; // type is EC2ClientConfig * const client = new EC2Client(config); * const input = { // EnableSnapshotBlockPublicAccessRequest * State: "block-all-sharing" || "block-new-sharing" || "unblocked", // required * DryRun: true || false, * }; * const command = new EnableSnapshotBlockPublicAccessCommand(input); * const response = await client.send(command); * // { // EnableSnapshotBlockPublicAccessResult * // State: "block-all-sharing" || "block-new-sharing" || "unblocked", * // }; * * ``` * * @param EnableSnapshotBlockPublicAccessCommandInput - {@link EnableSnapshotBlockPublicAccessCommandInput} * @returns {@link EnableSnapshotBlockPublicAccessCommandOutput} * @see {@link EnableSnapshotBlockPublicAccessCommandInput} for command's `input` shape. * @see {@link EnableSnapshotBlockPublicAccessCommandOutput} for command's `response` shape. * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape. * * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* * * @public */ export declare class EnableSnapshotBlockPublicAccessCommand extends EnableSnapshotBlockPublicAccessCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: EnableSnapshotBlockPublicAccessRequest; output: EnableSnapshotBlockPublicAccessResult; }; sdk: { input: EnableSnapshotBlockPublicAccessCommandInput; output: EnableSnapshotBlockPublicAccessCommandOutput; }; }; }