GetObjectRetentionCommand

This operation is not supported for directory buckets.

Retrieves an object's retention settings. For more information, see Locking Objects .

This functionality is not supported for Amazon S3 on Outposts.

The following action is related to GetObjectRetention:

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { S3Client, GetObjectRetentionCommand } from "@aws-sdk/client-s3"; // ES Modules import
// const { S3Client, GetObjectRetentionCommand } = require("@aws-sdk/client-s3"); // CommonJS import
const client = new S3Client(config);
const input = { // GetObjectRetentionRequest
  Bucket: "STRING_VALUE", // required
  Key: "STRING_VALUE", // required
  VersionId: "STRING_VALUE",
  RequestPayer: "requester",
  ExpectedBucketOwner: "STRING_VALUE",
};
const command = new GetObjectRetentionCommand(input);
const response = await client.send(command);
// { // GetObjectRetentionOutput
//   Retention: { // ObjectLockRetention
//     Mode: "GOVERNANCE" || "COMPLIANCE",
//     RetainUntilDate: new Date("TIMESTAMP"),
//   },
// };

GetObjectRetentionCommand Input

See GetObjectRetentionCommandInput for more details

Parameter
Type
Description
Bucket
Required
string | undefined

The bucket name containing the object whose retention settings you want to retrieve.

Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points  in the Amazon S3 User Guide.

Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "aws-sdk/signature-v4-crt" package to your project dependencies. For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues

Key
Required
string | undefined

The key name for the object whose retention settings you want to retrieve.

ExpectedBucketOwner
string | undefined

The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code 403 Forbidden (access denied).

RequestPayer
RequestPayer | undefined

Confirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets  in the Amazon S3 User Guide.

This functionality is not supported for directory buckets.

VersionId
string | undefined

The version ID for the object whose retention settings you want to retrieve.

GetObjectRetentionCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
Retention
ObjectLockRetention | undefined

The container element for an object's retention settings.

Throws

Name
Fault
Details
S3ServiceException
Base exception class for all service exceptions from S3 service.