Class: Aws::ApplicationSignals::Types::AuditorResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::AuditorResult
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Represents the result of an audit performed by a specific auditor on a resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auditor ⇒ String
The name or identifier of the auditor that performed the examination and generated this result.
-
#description ⇒ String
A detailed description of what the auditor found, including any recommendations for remediation or further investigation.
-
#severity ⇒ String
The severity level of the finding, such as "Critical", "High", "Medium", or "Low".
Instance Attribute Details
#auditor ⇒ String
The name or identifier of the auditor that performed the examination and generated this result.
183 184 185 186 187 188 189 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 183 class AuditorResult < Struct.new( :auditor, :description, :severity) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A detailed description of what the auditor found, including any recommendations for remediation or further investigation.
183 184 185 186 187 188 189 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 183 class AuditorResult < Struct.new( :auditor, :description, :severity) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ String
The severity level of the finding, such as "Critical", "High", "Medium", or "Low". This helps prioritize remediation efforts.
183 184 185 186 187 188 189 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 183 class AuditorResult < Struct.new( :auditor, :description, :severity) SENSITIVE = [] include Aws::Structure end |