import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
import { Command as $Command } from "@aws-sdk/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
import { PutObjectLockConfigurationOutput, PutObjectLockConfigurationRequest } from "../models/models_0";
import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client";
/**
* @public
*
* The input for {@link PutObjectLockConfigurationCommand}.
*/
export interface PutObjectLockConfigurationCommandInput extends PutObjectLockConfigurationRequest {
}
/**
* @public
*
* The output of {@link PutObjectLockConfigurationCommand}.
*/
export interface PutObjectLockConfigurationCommandOutput extends PutObjectLockConfigurationOutput, __MetadataBearer {
}
/**
* @public
*
Places an Object Lock configuration on the specified bucket. The rule specified in the
* Object Lock configuration will be applied by default to every new object placed in the
* specified bucket. For more information, see Locking Objects.
*
*
*
* -
*
The DefaultRetention settings require both a mode and a
* period.
*
* -
*
The DefaultRetention period can be either Days
* or Years but you must select one. You cannot specify Days
* and Years at the same time.
*
* -
*
You can only enable Object Lock for new buckets. If you want to turn on
* Object Lock for an existing bucket, contact Amazon Web Services Support.
*
*
*
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
* import { S3Client, PutObjectLockConfigurationCommand } from "@aws-sdk/client-s3"; // ES Modules import
* // const { S3Client, PutObjectLockConfigurationCommand } = require("@aws-sdk/client-s3"); // CommonJS import
* const client = new S3Client(config);
* const input = { // PutObjectLockConfigurationRequest
* Bucket: "STRING_VALUE", // required
* ObjectLockConfiguration: { // ObjectLockConfiguration
* ObjectLockEnabled: "Enabled",
* Rule: { // ObjectLockRule
* DefaultRetention: { // DefaultRetention
* Mode: "GOVERNANCE" || "COMPLIANCE",
* Days: Number("int"),
* Years: Number("int"),
* },
* },
* },
* RequestPayer: "requester",
* Token: "STRING_VALUE",
* ContentMD5: "STRING_VALUE",
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256",
* ExpectedBucketOwner: "STRING_VALUE",
* };
* const command = new PutObjectLockConfigurationCommand(input);
* const response = await client.send(command);
* ```
*
* @param PutObjectLockConfigurationCommandInput - {@link PutObjectLockConfigurationCommandInput}
* @returns {@link PutObjectLockConfigurationCommandOutput}
* @see {@link PutObjectLockConfigurationCommandInput} for command's `input` shape.
* @see {@link PutObjectLockConfigurationCommandOutput} for command's `response` shape.
* @see {@link S3ClientResolvedConfig | config} for S3Client's `config` shape.
*
*
*/
export declare class PutObjectLockConfigurationCommand extends $Command {
readonly input: PutObjectLockConfigurationCommandInput;
static getEndpointParameterInstructions(): EndpointParameterInstructions;
/**
* @public
*/
constructor(input: PutObjectLockConfigurationCommandInput);
/**
* @internal
*/
resolveMiddleware(clientStack: MiddlewareStack, configuration: S3ClientResolvedConfig, options?: __HttpHandlerOptions): Handler;
/**
* @internal
*/
private serialize;
/**
* @internal
*/
private deserialize;
}