Class: Aws::Inspector2::Types::Evidence
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::Evidence
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector2/types.rb
Overview
Details of the evidence for a vulnerability identified in a finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#evidence_detail ⇒ String
The evidence details.
-
#evidence_rule ⇒ String
The evidence rule.
-
#severity ⇒ String
The evidence severity.
Instance Attribute Details
#evidence_detail ⇒ String
The evidence details.
3081 3082 3083 3084 3085 3086 3087 |
# File 'lib/aws-sdk-inspector2/types.rb', line 3081 class Evidence < Struct.new( :evidence_detail, :evidence_rule, :severity) SENSITIVE = [] include Aws::Structure end |