Jump to Content

Class GetBucketOwnershipControlsCommandProtected

Retrieves OwnershipControls for an Amazon S3 bucket. To use this operation, you must have the s3:GetBucketOwnershipControls permission. For more information about Amazon S3 permissions, see Specifying permissions in a policy.

For information about Amazon S3 Object Ownership, see Using Object Ownership.

The following operations are related to GetBucketOwnershipControls:

Example

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

import { S3Client, GetBucketOwnershipControlsCommand } from "@aws-sdk/client-s3"; // ES Modules import
// const { S3Client, GetBucketOwnershipControlsCommand } = require("@aws-sdk/client-s3"); // CommonJS import
const client = new S3Client(config);
const input = {
Bucket: "STRING_VALUE", // required
ExpectedBucketOwner: "STRING_VALUE",
};
const command = new GetBucketOwnershipControlsCommand(input);
const response = await client.send(command);

Param

GetBucketOwnershipControlsCommandInput

Returns

GetBucketOwnershipControlsCommandOutput

See

Hierarchy

Constructors

Properties

Methods