Interface BehaviorCriteria.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<BehaviorCriteria.Builder,BehaviorCriteria>
,SdkBuilder<BehaviorCriteria.Builder,BehaviorCriteria>
,SdkPojo
- Enclosing class:
- BehaviorCriteria
public static interface BehaviorCriteria.Builder extends SdkPojo, CopyableBuilder<BehaviorCriteria.Builder,BehaviorCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BehaviorCriteria.Builder
comparisonOperator(String comparisonOperator)
The operator that relates the thing measured (metric
) to the criteria (containing avalue
orstatisticalThreshold
).BehaviorCriteria.Builder
comparisonOperator(ComparisonOperator comparisonOperator)
The operator that relates the thing measured (metric
) to the criteria (containing avalue
orstatisticalThreshold
).BehaviorCriteria.Builder
consecutiveDatapointsToAlarm(Integer consecutiveDatapointsToAlarm)
If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs.BehaviorCriteria.Builder
consecutiveDatapointsToClear(Integer consecutiveDatapointsToClear)
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.BehaviorCriteria.Builder
durationSeconds(Integer durationSeconds)
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
).default BehaviorCriteria.Builder
mlDetectionConfig(Consumer<MachineLearningDetectionConfig.Builder> mlDetectionConfig)
The configuration of an ML DetectBehaviorCriteria.Builder
mlDetectionConfig(MachineLearningDetectionConfig mlDetectionConfig)
The configuration of an ML Detectdefault BehaviorCriteria.Builder
statisticalThreshold(Consumer<StatisticalThreshold.Builder> statisticalThreshold)
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.BehaviorCriteria.Builder
statisticalThreshold(StatisticalThreshold statisticalThreshold)
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.default BehaviorCriteria.Builder
value(Consumer<MetricValue.Builder> value)
The value to be compared with themetric
.BehaviorCriteria.Builder
value(MetricValue value)
The value to be compared with themetric
.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
comparisonOperator
BehaviorCriteria.Builder comparisonOperator(String comparisonOperator)
The operator that relates the thing measured (
metric
) to the criteria (containing avalue
orstatisticalThreshold
). 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
- Parameters:
comparisonOperator
- The operator that relates the thing measured (metric
) to the criteria (containing avalue
orstatisticalThreshold
). 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
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator
,ComparisonOperator
-
-
comparisonOperator
BehaviorCriteria.Builder comparisonOperator(ComparisonOperator comparisonOperator)
The operator that relates the thing measured (
metric
) to the criteria (containing avalue
orstatisticalThreshold
). 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
- Parameters:
comparisonOperator
- The operator that relates the thing measured (metric
) to the criteria (containing avalue
orstatisticalThreshold
). 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
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator
,ComparisonOperator
-
-
value
BehaviorCriteria.Builder value(MetricValue value)
The value to be compared with the
metric
.- Parameters:
value
- The value to be compared with themetric
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
default BehaviorCriteria.Builder value(Consumer<MetricValue.Builder> value)
The value to be compared with the
This is a convenience method that creates an instance of themetric
.MetricValue.Builder
avoiding the need to create one manually viaMetricValue.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovalue(MetricValue)
.- Parameters:
value
- a consumer that will call methods onMetricValue.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
value(MetricValue)
-
durationSeconds
BehaviorCriteria.Builder durationSeconds(Integer durationSeconds)
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 astatisticalThreshhold
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.- Parameters:
durationSeconds
- 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 astatisticalThreshhold
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consecutiveDatapointsToAlarm
BehaviorCriteria.Builder consecutiveDatapointsToAlarm(Integer consecutiveDatapointsToAlarm)
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.
- Parameters:
consecutiveDatapointsToAlarm
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consecutiveDatapointsToClear
BehaviorCriteria.Builder consecutiveDatapointsToClear(Integer consecutiveDatapointsToClear)
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.
- Parameters:
consecutiveDatapointsToClear
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statisticalThreshold
BehaviorCriteria.Builder statisticalThreshold(StatisticalThreshold statisticalThreshold)
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.
- Parameters:
statisticalThreshold
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statisticalThreshold
default BehaviorCriteria.Builder statisticalThreshold(Consumer<StatisticalThreshold.Builder> statisticalThreshold)
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.
This is a convenience method that creates an instance of theStatisticalThreshold.Builder
avoiding the need to create one manually viaStatisticalThreshold.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostatisticalThreshold(StatisticalThreshold)
.- Parameters:
statisticalThreshold
- a consumer that will call methods onStatisticalThreshold.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
statisticalThreshold(StatisticalThreshold)
-
mlDetectionConfig
BehaviorCriteria.Builder mlDetectionConfig(MachineLearningDetectionConfig mlDetectionConfig)
The configuration of an ML Detect
- Parameters:
mlDetectionConfig
- The configuration of an ML Detect- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mlDetectionConfig
default BehaviorCriteria.Builder mlDetectionConfig(Consumer<MachineLearningDetectionConfig.Builder> mlDetectionConfig)
The configuration of an ML Detect
This is a convenience method that creates an instance of theMachineLearningDetectionConfig.Builder
avoiding the need to create one manually viaMachineLearningDetectionConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tomlDetectionConfig(MachineLearningDetectionConfig)
.- Parameters:
mlDetectionConfig
- a consumer that will call methods onMachineLearningDetectionConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
mlDetectionConfig(MachineLearningDetectionConfig)
-
-