Struct aws_sdk_macie2::types::BlockPublicAccess
source · #[non_exhaustive]pub struct BlockPublicAccess {
pub block_public_acls: Option<bool>,
pub block_public_policy: Option<bool>,
pub ignore_public_acls: Option<bool>,
pub restrict_public_buckets: Option<bool>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.block_public_acls: Option<bool>
Specifies whether Amazon S3 blocks public access control lists (ACLs) for the bucket and objects in the bucket.
block_public_policy: Option<bool>
Specifies whether Amazon S3 blocks public bucket policies for the bucket.
ignore_public_acls: Option<bool>
Specifies whether Amazon S3 ignores public ACLs for the bucket and objects in the bucket.
restrict_public_buckets: Option<bool>
Specifies whether Amazon S3 restricts public bucket policies for the bucket.
Implementations§
source§impl BlockPublicAccess
impl BlockPublicAccess
sourcepub fn block_public_acls(&self) -> Option<bool>
pub fn block_public_acls(&self) -> Option<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) -> Option<bool>
pub fn block_public_policy(&self) -> Option<bool>
Specifies whether Amazon S3 blocks public bucket policies for the bucket.
sourcepub fn ignore_public_acls(&self) -> Option<bool>
pub fn ignore_public_acls(&self) -> Option<bool>
Specifies whether Amazon S3 ignores public ACLs for the bucket and objects in the bucket.
sourcepub fn restrict_public_buckets(&self) -> Option<bool>
pub fn restrict_public_buckets(&self) -> Option<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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BlockPublicAccess
impl Debug for BlockPublicAccess
source§impl PartialEq for BlockPublicAccess
impl PartialEq for BlockPublicAccess
source§fn eq(&self, other: &BlockPublicAccess) -> bool
fn eq(&self, other: &BlockPublicAccess) -> bool
self
and other
values to be equal, and is used
by ==
.