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

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

Instance Attribute Details

#auditorString

The name of the auditor algorithm that generated this result.

Returns:

  • (String)


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

#dataHash<String,String>

This is a string-to-string map. It contains additional data about the result of an automated audit analysis.

Returns:

  • (Hash<String,String>)


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

#descriptionString

A detailed description of the audit finding, explaining what was observed and potential implications.

Returns:

  • (String)


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

#severityString

The severity level of this audit finding, indicating the importance and potential impact of the issue.

Returns:

  • (String)


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