Class: Aws::S3::Types::PutPublicAccessBlockRequest

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

{
  bucket: "BucketName", # required
  content_md5: "ContentMD5",
  public_access_block_configuration: { # required
    block_public_acls: false,
    ignore_public_acls: false,
    block_public_policy: false,
    restrict_public_buckets: false,
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the Amazon S3 bucket whose ‘PublicAccessBlock` configuration you want to set.

Returns:

  • (String)


8038
8039
8040
8041
8042
8043
# File 'lib/aws-sdk-s3/types.rb', line 8038

class PutPublicAccessBlockRequest < Struct.new(
  :bucket,
  :content_md5,
  :public_access_block_configuration)
  include Aws::Structure
end

#content_md5String

The MD5 hash of the ‘PutPublicAccessBlock` request body.

Returns:

  • (String)


8038
8039
8040
8041
8042
8043
# File 'lib/aws-sdk-s3/types.rb', line 8038

class PutPublicAccessBlockRequest < Struct.new(
  :bucket,
  :content_md5,
  :public_access_block_configuration)
  include Aws::Structure
end

#public_access_block_configurationTypes::PublicAccessBlockConfiguration

The ‘PublicAccessBlock` configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of “Public”] in the *Amazon Simple Storage Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status



8038
8039
8040
8041
8042
8043
# File 'lib/aws-sdk-s3/types.rb', line 8038

class PutPublicAccessBlockRequest < Struct.new(
  :bucket,
  :content_md5,
  :public_access_block_configuration)
  include Aws::Structure
end