Struct aws_sdk_macie2::types::BlockPublicAccess
source · #[non_exhaustive]pub struct BlockPublicAccess { /* private fields */ }
Expand description
Provides information about the block public access settings for an S3 bucket. These settings can apply to a bucket at the account or bucket level. For detailed information about each setting, see Blocking public access to your Amazon S3 storage in the Amazon Simple Storage Service User Guide.
Implementations§
source§impl BlockPublicAccess
impl BlockPublicAccess
sourcepub fn block_public_acls(&self) -> bool
pub fn block_public_acls(&self) -> bool
Specifies whether Amazon S3 blocks public access control lists (ACLs) for the bucket and objects in the bucket.
sourcepub fn block_public_policy(&self) -> bool
pub fn block_public_policy(&self) -> bool
Specifies whether Amazon S3 blocks public bucket policies for the bucket.
sourcepub fn ignore_public_acls(&self) -> bool
pub fn ignore_public_acls(&self) -> bool
Specifies whether Amazon S3 ignores public ACLs for the bucket and objects in the bucket.
sourcepub fn restrict_public_buckets(&self) -> bool
pub fn restrict_public_buckets(&self) -> bool
Specifies whether Amazon S3 restricts public bucket policies for the bucket.
source§impl BlockPublicAccess
impl BlockPublicAccess
sourcepub fn builder() -> BlockPublicAccessBuilder
pub fn builder() -> BlockPublicAccessBuilder
Creates a new builder-style object to manufacture BlockPublicAccess
.
Trait Implementations§
source§impl Clone for BlockPublicAccess
impl Clone for BlockPublicAccess
source§fn clone(&self) -> BlockPublicAccess
fn clone(&self) -> BlockPublicAccess
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BlockPublicAccess
impl Debug for BlockPublicAccess
source§impl PartialEq<BlockPublicAccess> for BlockPublicAccess
impl PartialEq<BlockPublicAccess> for BlockPublicAccess
source§fn eq(&self, other: &BlockPublicAccess) -> bool
fn eq(&self, other: &BlockPublicAccess) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.