Class: Aws::PI::Types::Recommendation
- Inherits:
-
Struct
- Object
- Struct
- Aws::PI::Types::Recommendation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pi/types.rb
Overview
The list of recommendations for the insight.
Constant Summary collapse
- SENSITIVE =
[:recommendation_description]
Instance Attribute Summary collapse
-
#recommendation_description ⇒ String
The recommendation details to help resolve the performance issue.
-
#recommendation_id ⇒ String
The unique identifier for the recommendation.
Instance Attribute Details
#recommendation_description ⇒ String
The recommendation details to help resolve the performance issue. For example, ‘Investigate the following SQLs that contributed to 100% of the total DBLoad during that time period: sql-id`
1611 1612 1613 1614 1615 1616 |
# File 'lib/aws-sdk-pi/types.rb', line 1611 class Recommendation < Struct.new( :recommendation_id, :recommendation_description) SENSITIVE = [:recommendation_description] include Aws::Structure end |
#recommendation_id ⇒ String
The unique identifier for the recommendation.
1611 1612 1613 1614 1615 1616 |
# File 'lib/aws-sdk-pi/types.rb', line 1611 class Recommendation < Struct.new( :recommendation_id, :recommendation_description) SENSITIVE = [:recommendation_description] include Aws::Structure end |