Get Findings Report Account Summary
codeguruprofiler_get_findings_report_account_summary | R Documentation |
Returns a list of FindingsReportSummary objects that contain analysis results for all profiling groups in your AWS account¶
Description¶
Returns a list of
FindingsReportSummary
objects that contain analysis results for all profiling groups in your
AWS account.
Usage¶
codeguruprofiler_get_findings_report_account_summary(dailyReportsOnly,
maxResults, nextToken)
Arguments¶
dailyReportsOnly |
A |
maxResults |
The maximum number of results returned by
|
nextToken |
The This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
reportSummaries = list(
list(
id = "string",
profileEndTime = as.POSIXct(
"2015-01-01"
),
profileStartTime = as.POSIXct(
"2015-01-01"
),
profilingGroupName = "string",
totalNumberOfFindings = 123
)
)
)
Request syntax¶
svc$get_findings_report_account_summary(
dailyReportsOnly = TRUE|FALSE,
maxResults = 123,
nextToken = "string"
)