Skip to main content

performance_analysis_report_recommendations

Creates, updates, deletes, gets or lists a performance_analysis_report_recommendations resource.

Overview

Nameperformance_analysis_report_recommendations
TypeResource
Idaws.pi.performance_analysis_report_recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
recommendation_descriptionstringThe 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 (pattern: <code>(.|\n)*</code>)
recommendation_detailsstringDetailed information about the recommendation, including steps to resolve the performance issue. (pattern: <code>(.|\n)*</code>)
recommendation_idstringThe unique identifier for the recommendation. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_performance_analysis_report_recommendationsselectregionRetrieves recommendations for a performance analysis report.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves recommendations for a performance analysis report.

SELECT
recommendation_description,
recommendation_details,
recommendation_id
FROM aws.pi.performance_analysis_report_recommendations
WHERE region = '{{ region }}' -- required
;