Class: Aws::PI::Types::Recommendation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#recommendation_descriptionString

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`

Returns:

  • (String)


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_idString

The unique identifier for the recommendation.

Returns:

  • (String)


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