Class: Aws::CodeGuruSecurity::Types::BatchGetFindingsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruSecurity::Types::BatchGetFindingsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurusecurity/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_findings ⇒ Array<Types::BatchGetFindingsError>
A list of errors for individual findings which were not fetched.
-
#findings ⇒ Array<Types::Finding>
A list of all findings which were successfully fetched.
Instance Attribute Details
#failed_findings ⇒ Array<Types::BatchGetFindingsError>
A list of errors for individual findings which were not fetched. Each BatchGetFindingsError contains the ‘scanName`, `findingId`, `errorCode` and error `message`.
135 136 137 138 139 140 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 135 class BatchGetFindingsResponse < Struct.new( :failed_findings, :findings) SENSITIVE = [] include Aws::Structure end |
#findings ⇒ Array<Types::Finding>
A list of all findings which were successfully fetched.
135 136 137 138 139 140 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 135 class BatchGetFindingsResponse < Struct.new( :failed_findings, :findings) SENSITIVE = [] include Aws::Structure end |