Struct aws_sdk_iot::model::behavior_criteria::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for BehaviorCriteria
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn comparison_operator(self, input: ComparisonOperator) -> Self
pub fn comparison_operator(self, input: ComparisonOperator) -> Self
The operator that relates the thing measured (metric
) to the criteria (containing a value
or statisticalThreshold
). Valid operators include:
-
string-list
:in-set
andnot-in-set
-
number-list
:in-set
andnot-in-set
-
ip-address-list
:in-cidr-set
andnot-in-cidr-set
-
number
:less-than
,less-than-equals
,greater-than
, andgreater-than-equals
sourcepub fn set_comparison_operator(self, input: Option<ComparisonOperator>) -> Self
pub fn set_comparison_operator(self, input: Option<ComparisonOperator>) -> Self
The operator that relates the thing measured (metric
) to the criteria (containing a value
or statisticalThreshold
). Valid operators include:
-
string-list
:in-set
andnot-in-set
-
number-list
:in-set
andnot-in-set
-
ip-address-list
:in-cidr-set
andnot-in-cidr-set
-
number
:less-than
,less-than-equals
,greater-than
, andgreater-than-equals
sourcepub fn value(self, input: MetricValue) -> Self
pub fn value(self, input: MetricValue) -> Self
The value to be compared with the metric
.
sourcepub fn set_value(self, input: Option<MetricValue>) -> Self
pub fn set_value(self, input: Option<MetricValue>) -> Self
The value to be compared with the metric
.
sourcepub fn duration_seconds(self, input: i32) -> Self
pub fn duration_seconds(self, input: i32) -> Self
Use this to specify the time duration over which the behavior is evaluated, for those criteria that have a time dimension (for example, NUM_MESSAGES_SENT
). For a statisticalThreshhold
metric comparison, measurements from all devices are accumulated over this time duration before being used to calculate percentiles, and later, measurements from an individual device are also accumulated over this time duration before being given a percentile rank. Cannot be used with list-based metric datatypes.
sourcepub fn set_duration_seconds(self, input: Option<i32>) -> Self
pub fn set_duration_seconds(self, input: Option<i32>) -> Self
Use this to specify the time duration over which the behavior is evaluated, for those criteria that have a time dimension (for example, NUM_MESSAGES_SENT
). For a statisticalThreshhold
metric comparison, measurements from all devices are accumulated over this time duration before being used to calculate percentiles, and later, measurements from an individual device are also accumulated over this time duration before being given a percentile rank. Cannot be used with list-based metric datatypes.
sourcepub fn consecutive_datapoints_to_alarm(self, input: i32) -> Self
pub fn consecutive_datapoints_to_alarm(self, input: i32) -> Self
If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs. If not specified, the default is 1.
sourcepub fn set_consecutive_datapoints_to_alarm(self, input: Option<i32>) -> Self
pub fn set_consecutive_datapoints_to_alarm(self, input: Option<i32>) -> Self
If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs. If not specified, the default is 1.
sourcepub fn consecutive_datapoints_to_clear(self, input: i32) -> Self
pub fn consecutive_datapoints_to_clear(self, input: i32) -> Self
If an alarm has occurred and the offending device is no longer in violation of the behavior for the specified number of consecutive datapoints, the alarm is cleared. If not specified, the default is 1.
sourcepub fn set_consecutive_datapoints_to_clear(self, input: Option<i32>) -> Self
pub fn set_consecutive_datapoints_to_clear(self, input: Option<i32>) -> Self
If an alarm has occurred and the offending device is no longer in violation of the behavior for the specified number of consecutive datapoints, the alarm is cleared. If not specified, the default is 1.
sourcepub fn statistical_threshold(self, input: StatisticalThreshold) -> Self
pub fn statistical_threshold(self, input: StatisticalThreshold) -> Self
A statistical ranking (percentile)that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.
sourcepub fn set_statistical_threshold(
self,
input: Option<StatisticalThreshold>
) -> Self
pub fn set_statistical_threshold(
self,
input: Option<StatisticalThreshold>
) -> Self
A statistical ranking (percentile)that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.
sourcepub fn ml_detection_config(self, input: MachineLearningDetectionConfig) -> Self
pub fn ml_detection_config(self, input: MachineLearningDetectionConfig) -> Self
The configuration of an ML Detect
sourcepub fn set_ml_detection_config(
self,
input: Option<MachineLearningDetectionConfig>
) -> Self
pub fn set_ml_detection_config(
self,
input: Option<MachineLearningDetectionConfig>
) -> Self
The configuration of an ML Detect
sourcepub fn build(self) -> BehaviorCriteria
pub fn build(self) -> BehaviorCriteria
Consumes the builder and constructs a BehaviorCriteria
.