Struct aws_sdk_databrew::model::Threshold
source · [−]#[non_exhaustive]pub struct Threshold {
pub value: f64,
pub type: Option<ThresholdType>,
pub unit: Option<ThresholdUnit>,
}
Expand description
The threshold used with a non-aggregate check expression. The non-aggregate check expression will be applied to each row in a specific column. Then the threshold will be used to determine whether the validation succeeds.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.value: f64
The value of a threshold.
type: Option<ThresholdType>
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
unit: Option<ThresholdUnit>
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
Implementations
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Threshold
impl UnwindSafe for Threshold
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more