Class: Aws::CodeGuruSecurity::Types::SuggestedFix
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruSecurity::Types::SuggestedFix
- Defined in:
- gems/aws-sdk-codegurusecurity/lib/aws-sdk-codegurusecurity/types.rb
Overview
Information about the suggested code fix to remediate a finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The suggested code fix.
-
#description ⇒ String
A description of the suggested code fix and why it is being suggested.
Instance Attribute Details
#code ⇒ String
The suggested code fix. If applicable, includes code patch to replace your source code.
1118 1119 1120 1121 1122 1123 |
# File 'gems/aws-sdk-codegurusecurity/lib/aws-sdk-codegurusecurity/types.rb', line 1118 class SuggestedFix < Struct.new( :code, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the suggested code fix and why it is being suggested.
1118 1119 1120 1121 1122 1123 |
# File 'gems/aws-sdk-codegurusecurity/lib/aws-sdk-codegurusecurity/types.rb', line 1118 class SuggestedFix < Struct.new( :code, :description) SENSITIVE = [] include Aws::Structure end |