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¶
Arguments¶
dailyReportsOnlyA
Booleanvalue indicating whether to only return reports from daily profiles. If set toTrue, only analysis data from daily profiles is returned. If set toFalse, analysis data is returned from smaller time windows (for example, one hour).maxResultsThe maximum number of results returned by
get_findings_report_account_summaryin paginated output. When this parameter is used,get_findings_report_account_summaryonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherget_findings_report_account_summaryrequest with the returnednextTokenvalue.nextTokenThe
nextTokenvalue returned from a previous paginatedget_findings_report_account_summaryrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue.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
)
)
)