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 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 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 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
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 SelectionCriteriaBuilder
impl Debug for SelectionCriteriaBuilder
source§impl Default for SelectionCriteriaBuilder
impl Default for SelectionCriteriaBuilder
source§fn default() -> SelectionCriteriaBuilder
fn default() -> SelectionCriteriaBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SelectionCriteriaBuilder> for SelectionCriteriaBuilder
impl PartialEq<SelectionCriteriaBuilder> for SelectionCriteriaBuilder
source§fn eq(&self, other: &SelectionCriteriaBuilder) -> bool
fn eq(&self, other: &SelectionCriteriaBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SelectionCriteriaBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more