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.
4969 4970 4971 4972 4973 4974 4975 |
# File 'lib/aws-sdk-inspector2/types.rb', line 4969 class Evidence < Struct.new( :evidence_rule, :evidence_detail, :severity) SENSITIVE = [] include Aws::Structure end |