Class: Aws::S3::Types::PutBucketPolicyRequest

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 PutBucketPolicyRequest data as a hash:

{
  bucket: "BucketName", # required
  content_md5: "ContentMD5",
  confirm_remove_self_bucket_access: false,
  policy: "Policy", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the bucket.

Returns:

  • (String)


9130
9131
9132
9133
9134
9135
9136
# File 'lib/aws-sdk-s3/types.rb', line 9130

class PutBucketPolicyRequest < Struct.new(
  :bucket,
  :content_md5,
  :confirm_remove_self_bucket_access,
  :policy)
  include Aws::Structure
end

#confirm_remove_self_bucket_accessBoolean

Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in the future.

Returns:

  • (Boolean)


9130
9131
9132
9133
9134
9135
9136
# File 'lib/aws-sdk-s3/types.rb', line 9130

class PutBucketPolicyRequest < Struct.new(
  :bucket,
  :content_md5,
  :confirm_remove_self_bucket_access,
  :policy)
  include Aws::Structure
end

#content_md5String

The MD5 hash of the request body.

Returns:

  • (String)


9130
9131
9132
9133
9134
9135
9136
# File 'lib/aws-sdk-s3/types.rb', line 9130

class PutBucketPolicyRequest < Struct.new(
  :bucket,
  :content_md5,
  :confirm_remove_self_bucket_access,
  :policy)
  include Aws::Structure
end

#policyString

The bucket policy as a JSON document.

Returns:

  • (String)


9130
9131
9132
9133
9134
9135
9136
# File 'lib/aws-sdk-s3/types.rb', line 9130

class PutBucketPolicyRequest < Struct.new(
  :bucket,
  :content_md5,
  :confirm_remove_self_bucket_access,
  :policy)
  include Aws::Structure
end