Struct aws_sdk_databrew::types::builders::ThresholdBuilder
source · #[non_exhaustive]pub struct ThresholdBuilder { /* private fields */ }
Expand description
A builder for Threshold
.
Implementations§
source§impl ThresholdBuilder
impl ThresholdBuilder
sourcepub fn type(self, input: ThresholdType) -> Self
pub fn type(self, input: ThresholdType) -> Self
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
sourcepub fn set_type(self, input: Option<ThresholdType>) -> Self
pub fn set_type(self, input: Option<ThresholdType>) -> Self
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
sourcepub fn get_type(&self) -> &Option<ThresholdType>
pub fn get_type(&self) -> &Option<ThresholdType>
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
sourcepub fn unit(self, input: ThresholdUnit) -> Self
pub fn unit(self, input: ThresholdUnit) -> Self
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
sourcepub fn set_unit(self, input: Option<ThresholdUnit>) -> Self
pub fn set_unit(self, input: Option<ThresholdUnit>) -> Self
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
sourcepub fn get_unit(&self) -> &Option<ThresholdUnit>
pub fn get_unit(&self) -> &Option<ThresholdUnit>
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
Trait Implementations§
source§impl Clone for ThresholdBuilder
impl Clone for ThresholdBuilder
source§fn clone(&self) -> ThresholdBuilder
fn clone(&self) -> ThresholdBuilder
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 ThresholdBuilder
impl Debug for ThresholdBuilder
source§impl Default for ThresholdBuilder
impl Default for ThresholdBuilder
source§fn default() -> ThresholdBuilder
fn default() -> ThresholdBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ThresholdBuilder
impl PartialEq for ThresholdBuilder
source§fn eq(&self, other: &ThresholdBuilder) -> bool
fn eq(&self, other: &ThresholdBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ThresholdBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ThresholdBuilder
impl Send for ThresholdBuilder
impl Sync for ThresholdBuilder
impl Unpin for ThresholdBuilder
impl UnwindSafe for ThresholdBuilder
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
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>
Creates a shared type from an unshared type.