Class: Aws::Macie2::Types::SeverityLevel
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie2::Types::SeverityLevel
- Defined in:
- gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb
Overview
Note:
When making an API call, you may pass SeverityLevel data as a hash:
{
occurrences_threshold: 1, # required
severity: "LOW", # required, accepts LOW, MEDIUM, HIGH
}
Specifies a severity level for findings that a custom data identifier produces. A severity level determines which severity is assigned to the findings, based on the number of occurrences of text that matches the custom data identifier's detection criteria.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#occurrences_threshold ⇒ Integer
-
#severity ⇒ String
The severity of a finding, ranging from LOW, for least severe, to HIGH, for most severe.
Instance Attribute Details
#occurrences_threshold ⇒ Integer
5969 5970 5971 5972 5973 5974 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 5969 class SeverityLevel < Struct.new( :occurrences_threshold, :severity) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ String
The severity of a finding, ranging from LOW, for least severe, to HIGH, for most severe. Valid values are:
5969 5970 5971 5972 5973 5974 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 5969 class SeverityLevel < Struct.new( :occurrences_threshold, :severity) SENSITIVE = [] include Aws::Structure end |