pub struct S3ResourceClassificationUpdate {
pub bucket_name: String,
pub classification_type_update: ClassificationTypeUpdate,
pub prefix: Option<String>,
}
Expand description
The S3 resources whose classification types you want to update. This data type is used as a request parameter in the UpdateS3Resources action.
Fields§
§bucket_name: String
The name of the S3 bucket whose classification types you want to update.
classification_type_update: ClassificationTypeUpdate
The classification type that you want to update for the resource associated with Amazon Macie Classic.
prefix: Option<String>
The prefix of the S3 bucket whose classification types you want to update.
Trait Implementations§
Source§impl Clone for S3ResourceClassificationUpdate
impl Clone for S3ResourceClassificationUpdate
Source§fn clone(&self) -> S3ResourceClassificationUpdate
fn clone(&self) -> S3ResourceClassificationUpdate
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 Default for S3ResourceClassificationUpdate
impl Default for S3ResourceClassificationUpdate
Source§fn default() -> S3ResourceClassificationUpdate
fn default() -> S3ResourceClassificationUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for S3ResourceClassificationUpdate
impl PartialEq for S3ResourceClassificationUpdate
Source§fn eq(&self, other: &S3ResourceClassificationUpdate) -> bool
fn eq(&self, other: &S3ResourceClassificationUpdate) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for S3ResourceClassificationUpdate
Auto Trait Implementations§
impl Freeze for S3ResourceClassificationUpdate
impl RefUnwindSafe for S3ResourceClassificationUpdate
impl Send for S3ResourceClassificationUpdate
impl Sync for S3ResourceClassificationUpdate
impl Unpin for S3ResourceClassificationUpdate
impl UnwindSafe for S3ResourceClassificationUpdate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more