List Report Definitions
| applicationcostprofiler_list_report_definitions | R Documentation | 
Retrieves a list of all reports and their configurations for your AWS account¶
Description¶
Retrieves a list of all reports and their configurations for your AWS account.
The maximum number of reports is one.
Usage¶
applicationcostprofiler_list_report_definitions(nextToken, maxResults)
Arguments¶
nextToken | 
The token value from a previous call to access the next page of results.  | 
maxResults | 
The maximum number of results to return.  | 
Value¶
A list with the following syntax:
list(
  reportDefinitions = list(
    list(
      reportId = "string",
      reportDescription = "string",
      reportFrequency = "MONTHLY"|"DAILY"|"ALL",
      format = "CSV"|"PARQUET",
      destinationS3Location = list(
        bucket = "string",
        prefix = "string"
      ),
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_report_definitions(
  nextToken = "string",
  maxResults = 123
)