Class: Aws::S3::Types::OwnershipControlsRule

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass OwnershipControlsRule data as a hash:

{
  object_ownership: "BucketOwnerPreferred", # required, accepts BucketOwnerPreferred, ObjectWriter
}

The container element for an ownership control rule.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#object_ownershipString

The container element for object ownership for a bucket’s ownership controls.

BucketOwnerPreferred - Objects uploaded to the bucket change ownership to the bucket owner if the objects are uploaded with the ‘bucket-owner-full-control` canned ACL.

ObjectWriter - The uploading account will own the object if the object is uploaded with the ‘bucket-owner-full-control` canned ACL.

Returns:

  • (String)


9777
9778
9779
9780
9781
# File 'lib/aws-sdk-s3/types.rb', line 9777

class OwnershipControlsRule < Struct.new(
  :object_ownership)
  SENSITIVE = []
  include Aws::Structure
end