#[non_exhaustive]pub struct ObjectLevelStatisticsBuilder { /* private fields */ }
Expand description
A builder for ObjectLevelStatistics
.
Implementations§
source§impl ObjectLevelStatisticsBuilder
impl ObjectLevelStatisticsBuilder
sourcepub fn file_type(self, input: i64) -> Self
pub fn file_type(self, input: i64) -> Self
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects don't have a file name extension for a supported file or storage format.
sourcepub fn set_file_type(self, input: Option<i64>) -> Self
pub fn set_file_type(self, input: Option<i64>) -> Self
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects don't have a file name extension for a supported file or storage format.
sourcepub fn get_file_type(&self) -> &Option<i64>
pub fn get_file_type(&self) -> &Option<i64>
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects don't have a file name extension for a supported file or storage format.
sourcepub fn storage_class(self, input: i64) -> Self
pub fn storage_class(self, input: i64) -> Self
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class.
sourcepub fn set_storage_class(self, input: Option<i64>) -> Self
pub fn set_storage_class(self, input: Option<i64>) -> Self
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class.
sourcepub fn get_storage_class(&self) -> &Option<i64>
pub fn get_storage_class(&self) -> &Option<i64>
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class.
sourcepub fn total(self, input: i64) -> Self
pub fn total(self, input: i64) -> Self
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class or don't have a file name extension for a supported file or storage format.
sourcepub fn set_total(self, input: Option<i64>) -> Self
pub fn set_total(self, input: Option<i64>) -> Self
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class or don't have a file name extension for a supported file or storage format.
sourcepub fn get_total(&self) -> &Option<i64>
pub fn get_total(&self) -> &Option<i64>
The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class or don't have a file name extension for a supported file or storage format.
sourcepub fn build(self) -> ObjectLevelStatistics
pub fn build(self) -> ObjectLevelStatistics
Consumes the builder and constructs a ObjectLevelStatistics
.
Trait Implementations§
source§impl Clone for ObjectLevelStatisticsBuilder
impl Clone for ObjectLevelStatisticsBuilder
source§fn clone(&self) -> ObjectLevelStatisticsBuilder
fn clone(&self) -> ObjectLevelStatisticsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ObjectLevelStatisticsBuilder
impl Debug for ObjectLevelStatisticsBuilder
source§impl Default for ObjectLevelStatisticsBuilder
impl Default for ObjectLevelStatisticsBuilder
source§fn default() -> ObjectLevelStatisticsBuilder
fn default() -> ObjectLevelStatisticsBuilder
source§impl PartialEq for ObjectLevelStatisticsBuilder
impl PartialEq for ObjectLevelStatisticsBuilder
source§fn eq(&self, other: &ObjectLevelStatisticsBuilder) -> bool
fn eq(&self, other: &ObjectLevelStatisticsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ObjectLevelStatisticsBuilder
Auto Trait Implementations§
impl Freeze for ObjectLevelStatisticsBuilder
impl RefUnwindSafe for ObjectLevelStatisticsBuilder
impl Send for ObjectLevelStatisticsBuilder
impl Sync for ObjectLevelStatisticsBuilder
impl Unpin for ObjectLevelStatisticsBuilder
impl UnwindSafe for ObjectLevelStatisticsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more