List Performance Analysis Reports
| pi_list_performance_analysis_reports | R Documentation |
Lists all the analysis reports created for the DB instance¶
Description¶
Lists all the analysis reports created for the DB instance. The reports are sorted based on the start time of each report.
Usage¶
Arguments¶
ServiceType[required] The Amazon Web Services service for which Performance Insights returns metrics. Valid value is
RDS.Identifier[required] An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as ResourceID. When you call
DescribeDBInstances, the identifier is returned asDbiResourceId.To use a DB instance as a data source, specify its
DbiResourceIdvalue. For example, specifydb-ABCDEFGHIJKLMNOPQRSTU1VW2X.NextTokenAn optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by
MaxResults.MaxResultsThe maximum number of items to return in the response. If more items exist than the specified
MaxResultsvalue, a pagination token is included in the response so that the remaining results can be retrieved.ListTagsSpecifies whether or not to include the list of tags in the response.
Value¶
A list with the following syntax:
list(
AnalysisReports = list(
list(
AnalysisReportId = "string",
CreateTime = as.POSIXct(
"2015-01-01"
),
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
Status = "RUNNING"|"SUCCEEDED"|"FAILED",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)