Class: Aws::IoT::Types::MachineLearningDetectionConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass MachineLearningDetectionConfig data as a hash:

{
  confidence_level: "LOW", # required, accepts LOW, MEDIUM, HIGH
}

The configuration of an ML Detect Security Profile.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidence_levelString

The sensitivity of anomalous behavior evaluation. Can be `Low`, `Medium`, or `High`.

Returns:

  • (String)


13934
13935
13936
13937
13938
# File 'lib/aws-sdk-iot/types.rb', line 13934

class MachineLearningDetectionConfig < Struct.new(
  :confidence_level)
  SENSITIVE = []
  include Aws::Structure
end