Skip to content

Update Report Definition

applicationcostprofiler_update_report_definition R Documentation

Updates existing report in AWS Application Cost Profiler

Description

Updates existing report in AWS Application Cost Profiler.

Usage

applicationcostprofiler_update_report_definition(reportId,
  reportDescription, reportFrequency, format, destinationS3Location)

Arguments

reportId

[required] Required. ID of the report to update.

reportDescription

[required] Required. Description of the report.

reportFrequency

[required] Required. The cadence to generate the report.

format

[required] Required. The format to use for the generated report.

destinationS3Location

[required] Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.

Value

A list with the following syntax:

list(
  reportId = "string"
)

Request syntax

svc$update_report_definition(
  reportId = "string",
  reportDescription = "string",
  reportFrequency = "MONTHLY"|"DAILY"|"ALL",
  format = "CSV"|"PARQUET",
  destinationS3Location = list(
    bucket = "string",
    prefix = "string"
  )
)