Class: Aws::SecurityHub::Types::FindingProviderFields
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::FindingProviderFields
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
In a BatchImportFindings
request, finding providers use
FindingProviderFields
to provide and update values for confidence,
criticality, related findings, severity, and types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Integer
A finding's confidence.
-
#criticality ⇒ Integer
The level of importance assigned to the resources associated with the finding.
-
#related_findings ⇒ Array<Types::RelatedFinding>
A list of findings that are related to the current finding.
-
#severity ⇒ Types::FindingProviderSeverity
The severity of a finding.
-
#types ⇒ Array<String>
One or more finding types in the format of
namespace/category/classifier
that classify a finding.
Instance Attribute Details
#confidence ⇒ Integer
A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify.
Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence.
22186 22187 22188 22189 22190 22191 22192 22193 22194 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22186 class FindingProviderFields < Struct.new( :confidence, :criticality, :related_findings, :severity, :types) SENSITIVE = [] include Aws::Structure end |
#criticality ⇒ Integer
The level of importance assigned to the resources associated with the finding.
A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources.
22186 22187 22188 22189 22190 22191 22192 22193 22194 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22186 class FindingProviderFields < Struct.new( :confidence, :criticality, :related_findings, :severity, :types) SENSITIVE = [] include Aws::Structure end |
#related_findings ⇒ Array<Types::RelatedFinding>
A list of findings that are related to the current finding.
22186 22187 22188 22189 22190 22191 22192 22193 22194 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22186 class FindingProviderFields < Struct.new( :confidence, :criticality, :related_findings, :severity, :types) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ Types::FindingProviderSeverity
The severity of a finding.
22186 22187 22188 22189 22190 22191 22192 22193 22194 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22186 class FindingProviderFields < Struct.new( :confidence, :criticality, :related_findings, :severity, :types) SENSITIVE = [] include Aws::Structure end |
#types ⇒ Array<String>
One or more finding types in the format of
namespace/category/classifier
that classify a finding.
Valid namespace values are: Software and Configuration Checks | TTPs | Effects | Unusual Behaviors | Sensitive Data Identifications
22186 22187 22188 22189 22190 22191 22192 22193 22194 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22186 class FindingProviderFields < Struct.new( :confidence, :criticality, :related_findings, :severity, :types) SENSITIVE = [] include Aws::Structure end |