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

Returns:

  • (String)


7113
7114
7115
7116
7117
7118
7119
# File 'lib/aws-sdk-s3/types.rb', line 7113

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)


7113
7114
7115
7116
7117
7118
7119
# File 'lib/aws-sdk-s3/types.rb', line 7113

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

#content_md5String

Returns:

  • (String)


7113
7114
7115
7116
7117
7118
7119
# File 'lib/aws-sdk-s3/types.rb', line 7113

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)


7113
7114
7115
7116
7117
7118
7119
# File 'lib/aws-sdk-s3/types.rb', line 7113

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