Class: Aws::ApplicationSignals::Types::AuditorResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#auditorString

The name or identifier of the auditor that performed the examination and generated this result.

Returns:

  • (String)


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

#descriptionString

A detailed description of what the auditor found, including any recommendations for remediation or further investigation.

Returns:

  • (String)


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

#severityString

The severity level of the finding, such as "Critical", "High", "Medium", or "Low". This helps prioritize remediation efforts.

Returns:

  • (String)


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