#[non_exhaustive]pub struct S3ClassificationScopeExclusionUpdate { /* private fields */ }
Expand description
Specifies S3 buckets to add or remove from the exclusion list defined by the classification scope for an Amazon Macie account.
Implementations§
source§impl S3ClassificationScopeExclusionUpdate
impl S3ClassificationScopeExclusionUpdate
sourcepub fn bucket_names(&self) -> Option<&[String]>
pub fn bucket_names(&self) -> Option<&[String]>
Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list. Each string must be the full name of an S3 bucket. Values are case sensitive.
sourcepub fn operation(&self) -> Option<&ClassificationScopeUpdateOperation>
pub fn operation(&self) -> Option<&ClassificationScopeUpdateOperation>
Specifies how to apply the changes to the exclusion list. Valid values are:
ADD - Append the specified bucket names to the current list.
REMOVE - Remove the specified bucket names from the current list.
REPLACE - Overwrite the current list with the specified list of bucket names. If you specify this value, Amazon Macie removes all existing names from the list and adds all the specified names to the list.
source§impl S3ClassificationScopeExclusionUpdate
impl S3ClassificationScopeExclusionUpdate
sourcepub fn builder() -> S3ClassificationScopeExclusionUpdateBuilder
pub fn builder() -> S3ClassificationScopeExclusionUpdateBuilder
Creates a new builder-style object to manufacture S3ClassificationScopeExclusionUpdate
.
Trait Implementations§
source§impl Clone for S3ClassificationScopeExclusionUpdate
impl Clone for S3ClassificationScopeExclusionUpdate
source§fn clone(&self) -> S3ClassificationScopeExclusionUpdate
fn clone(&self) -> S3ClassificationScopeExclusionUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<S3ClassificationScopeExclusionUpdate> for S3ClassificationScopeExclusionUpdate
impl PartialEq<S3ClassificationScopeExclusionUpdate> for S3ClassificationScopeExclusionUpdate
source§fn eq(&self, other: &S3ClassificationScopeExclusionUpdate) -> bool
fn eq(&self, other: &S3ClassificationScopeExclusionUpdate) -> bool
self
and other
values to be equal, and is used
by ==
.