Struct aws_sdk_macie2::model::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 level 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
sourceimpl 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.
sourceimpl BlockPublicAccess
impl BlockPublicAccess
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BlockPublicAccess
.
Trait Implementations
sourceimpl Clone for BlockPublicAccess
impl Clone for BlockPublicAccess
sourcefn clone(&self) -> BlockPublicAccess
fn clone(&self) -> BlockPublicAccess
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for BlockPublicAccess
impl Debug for BlockPublicAccess
sourceimpl PartialEq<BlockPublicAccess> for BlockPublicAccess
impl PartialEq<BlockPublicAccess> for BlockPublicAccess
sourcefn eq(&self, other: &BlockPublicAccess) -> bool
fn eq(&self, other: &BlockPublicAccess) -> bool
impl StructuralPartialEq for BlockPublicAccess
Auto Trait Implementations
impl RefUnwindSafe for BlockPublicAccess
impl Send for BlockPublicAccess
impl Sync for BlockPublicAccess
impl Unpin for BlockPublicAccess
impl UnwindSafe for BlockPublicAccess
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more