pub struct ClassificationTypeUpdate {
pub continuous: Option<String>,
pub one_time: Option<String>,
}
Expand description
The classification type that Amazon Macie Classic applies to the associated S3 resources. At least one of the classification types (oneTime or continuous) must be specified.
Fields§
§continuous: Option<String>
A continuous classification of the objects that are added to a specified S3 bucket. Amazon Macie Classic begins performing continuous classification after a bucket is successfully associated with Amazon Macie Classic.
one_time: Option<String>
A one-time classification of all of the existing objects in a specified S3 bucket.
Trait Implementations§
Source§impl Clone for ClassificationTypeUpdate
impl Clone for ClassificationTypeUpdate
Source§fn clone(&self) -> ClassificationTypeUpdate
fn clone(&self) -> ClassificationTypeUpdate
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 ClassificationTypeUpdate
impl Debug for ClassificationTypeUpdate
Source§impl Default for ClassificationTypeUpdate
impl Default for ClassificationTypeUpdate
Source§fn default() -> ClassificationTypeUpdate
fn default() -> ClassificationTypeUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClassificationTypeUpdate
impl PartialEq for ClassificationTypeUpdate
Source§impl Serialize for ClassificationTypeUpdate
impl Serialize for ClassificationTypeUpdate
impl StructuralPartialEq for ClassificationTypeUpdate
Auto Trait Implementations§
impl Freeze for ClassificationTypeUpdate
impl RefUnwindSafe for ClassificationTypeUpdate
impl Send for ClassificationTypeUpdate
impl Sync for ClassificationTypeUpdate
impl Unpin for ClassificationTypeUpdate
impl UnwindSafe for ClassificationTypeUpdate
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