Class: Aws::ApplicationSignals::Types::AuditorResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::AuditorResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationsignals/types.rb
Overview
A structure that contains the result of an automated audit analysis, including the auditor name, description of findings, additional data, and severity level.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auditor ⇒ String
The name of the auditor algorithm that generated this result.
-
#data ⇒ Hash<String,String>
This is a string-to-string map.
-
#description ⇒ String
A detailed description of the audit finding, explaining what was observed and potential implications.
-
#severity ⇒ String
The severity level of this audit finding, indicating the importance and potential impact of the issue.
Instance Attribute Details
#auditor ⇒ String
The name of the auditor algorithm that generated this result.
190 191 192 193 194 195 196 197 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 190 class AuditorResult < Struct.new( :auditor, :description, :data, :severity) SENSITIVE = [] include Aws::Structure end |
#data ⇒ Hash<String,String>
This is a string-to-string map. It contains additional data about the result of an automated audit analysis.
190 191 192 193 194 195 196 197 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 190 class AuditorResult < Struct.new( :auditor, :description, :data, :severity) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A detailed description of the audit finding, explaining what was observed and potential implications.
190 191 192 193 194 195 196 197 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 190 class AuditorResult < Struct.new( :auditor, :description, :data, :severity) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ String
The severity level of this audit finding, indicating the importance and potential impact of the issue.
190 191 192 193 194 195 196 197 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 190 class AuditorResult < Struct.new( :auditor, :description, :data, :severity) SENSITIVE = [] include Aws::Structure end |