Struct aws_sdk_s3control::types::builders::SelectionCriteriaBuilder
source · #[non_exhaustive]pub struct SelectionCriteriaBuilder { /* private fields */ }
Expand description
A builder for SelectionCriteria
.
Implementations§
source§impl SelectionCriteriaBuilder
impl SelectionCriteriaBuilder
sourcepub fn delimiter(self, input: impl Into<String>) -> Self
pub fn delimiter(self, input: impl Into<String>) -> Self
A container for the delimiter of the selection criteria being used.
sourcepub fn set_delimiter(self, input: Option<String>) -> Self
pub fn set_delimiter(self, input: Option<String>) -> Self
A container for the delimiter of the selection criteria being used.
sourcepub fn get_delimiter(&self) -> &Option<String>
pub fn get_delimiter(&self) -> &Option<String>
A container for the delimiter of the selection criteria being used.
sourcepub fn set_max_depth(self, input: Option<i32>) -> Self
pub fn set_max_depth(self, input: Option<i32>) -> Self
The max depth of the selection criteria
sourcepub fn get_max_depth(&self) -> &Option<i32>
pub fn get_max_depth(&self) -> &Option<i32>
The max depth of the selection criteria
sourcepub fn min_storage_bytes_percentage(self, input: f64) -> Self
pub fn min_storage_bytes_percentage(self, input: f64) -> Self
The minimum number of storage bytes percentage whose metrics will be selected.
You must choose a value greater than or equal to 1.0
.
sourcepub fn set_min_storage_bytes_percentage(self, input: Option<f64>) -> Self
pub fn set_min_storage_bytes_percentage(self, input: Option<f64>) -> Self
The minimum number of storage bytes percentage whose metrics will be selected.
You must choose a value greater than or equal to 1.0
.
sourcepub fn get_min_storage_bytes_percentage(&self) -> &Option<f64>
pub fn get_min_storage_bytes_percentage(&self) -> &Option<f64>
The minimum number of storage bytes percentage whose metrics will be selected.
You must choose a value greater than or equal to 1.0
.
sourcepub fn build(self) -> SelectionCriteria
pub fn build(self) -> SelectionCriteria
Consumes the builder and constructs a SelectionCriteria
.
Trait Implementations§
source§impl Clone for SelectionCriteriaBuilder
impl Clone for SelectionCriteriaBuilder
source§fn clone(&self) -> SelectionCriteriaBuilder
fn clone(&self) -> SelectionCriteriaBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SelectionCriteriaBuilder
impl Debug for SelectionCriteriaBuilder
source§impl Default for SelectionCriteriaBuilder
impl Default for SelectionCriteriaBuilder
source§fn default() -> SelectionCriteriaBuilder
fn default() -> SelectionCriteriaBuilder
source§impl PartialEq for SelectionCriteriaBuilder
impl PartialEq for SelectionCriteriaBuilder
source§fn eq(&self, other: &SelectionCriteriaBuilder) -> bool
fn eq(&self, other: &SelectionCriteriaBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SelectionCriteriaBuilder
Auto Trait Implementations§
impl Freeze for SelectionCriteriaBuilder
impl RefUnwindSafe for SelectionCriteriaBuilder
impl Send for SelectionCriteriaBuilder
impl Sync for SelectionCriteriaBuilder
impl Unpin for SelectionCriteriaBuilder
impl UnwindSafe for SelectionCriteriaBuilder
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