Method: Aws::S3Control::Types::PublicAccessBlockConfiguration#ignore_public_acls
- Defined in:
- lib/aws-sdk-s3control/types.rb
#ignore_public_acls ⇒ Boolean
Specifies whether Amazon S3 should ignore public ACLs for buckets in this account. Setting this element to ‘TRUE` causes Amazon S3 to ignore all public ACLs on buckets in this account and any objects that they contain.
Enabling this setting doesn’t affect the persistence of any existing ACLs and doesn’t prevent new public ACLs from being set.
This property is not supported for Amazon S3 on Outposts.
6136 6137 6138 6139 6140 6141 6142 6143 |
# File 'lib/aws-sdk-s3control/types.rb', line 6136 class PublicAccessBlockConfiguration < Struct.new( :block_public_acls, :ignore_public_acls, :block_public_policy, :restrict_public_buckets) SENSITIVE = [] include Aws::Structure end |