SecurityProfileBehaviorCriteriaArgs

data class SecurityProfileBehaviorCriteriaArgs(val comparisonOperator: Output<SecurityProfileBehaviorCriteriaComparisonOperator>? = null, val consecutiveDatapointsToAlarm: Output<Int>? = null, val consecutiveDatapointsToClear: Output<Int>? = null, val durationSeconds: Output<Int>? = null, val mlDetectionConfig: Output<SecurityProfileMachineLearningDetectionConfigArgs>? = null, val statisticalThreshold: Output<SecurityProfileStatisticalThresholdArgs>? = null, val value: Output<SecurityProfileMetricValueArgs>? = null) : ConvertibleToJava<SecurityProfileBehaviorCriteriaArgs>

The criteria by which the behavior is determined to be normal.

Constructors

Link copied to clipboard
fun SecurityProfileBehaviorCriteriaArgs(comparisonOperator: Output<SecurityProfileBehaviorCriteriaComparisonOperator>? = null, consecutiveDatapointsToAlarm: Output<Int>? = null, consecutiveDatapointsToClear: Output<Int>? = null, durationSeconds: Output<Int>? = null, mlDetectionConfig: Output<SecurityProfileMachineLearningDetectionConfigArgs>? = null, statisticalThreshold: Output<SecurityProfileStatisticalThresholdArgs>? = null, value: Output<SecurityProfileMetricValueArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SecurityProfileBehaviorCriteriaArgs

Properties

Link copied to clipboard

The operator that relates the thing measured (metric) to the criteria (containing a value or statisticalThreshold).

Link copied to clipboard
val consecutiveDatapointsToAlarm: Output<Int>? = null

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.

Link copied to clipboard
val consecutiveDatapointsToClear: Output<Int>? = null

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.

Link copied to clipboard
val durationSeconds: Output<Int>? = null

Use this to specify the time duration over which the behavior is evaluated.

Link copied to clipboard