UNPKG

@aws-sdk/client-s3

Version:

AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native

58 lines (57 loc) 3.32 kB
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"; export interface PutObjectLockConfigurationCommandInput extends PutObjectLockConfigurationRequest { } export interface PutObjectLockConfigurationCommandOutput extends PutObjectLockConfigurationOutput, __MetadataBearer { } /** * <p>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 <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking Objects</a>. * </p> * <note> * <ul> * <li> * <p>The <code>DefaultRetention</code> settings require both a mode and a * period.</p> * </li> * <li> * <p>The <code>DefaultRetention</code> period can be either <code>Days</code> * or <code>Years</code> but you must select one. You cannot specify <code>Days</code> * and <code>Years</code> at the same time.</p> * </li> * <li> * <p>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.</p> * </li> * </ul> * </note> * @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 command = new PutObjectLockConfigurationCommand(input); * const response = await client.send(command); * ``` * * @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<PutObjectLockConfigurationCommandInput, PutObjectLockConfigurationCommandOutput, S3ClientResolvedConfig> { readonly input: PutObjectLockConfigurationCommandInput; static getEndpointParameterInstructions(): EndpointParameterInstructions; constructor(input: PutObjectLockConfigurationCommandInput); /** * @internal */ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutObjectLockConfigurationCommandInput, PutObjectLockConfigurationCommandOutput>; private serialize; private deserialize; }