Delete Report Definition
costandusagereportservice_delete_report_definition | R Documentation |
Deletes the specified report¶
Description¶
Deletes the specified report. Any tags associated with the report are also deleted.
Usage¶
costandusagereportservice_delete_report_definition(ReportName)
Arguments¶
ReportName |
[required] The name of the report that you want to delete. The name must be unique, is case sensitive, and can't include spaces. |
Value¶
A list with the following syntax:
list(
ResponseMessage = "string"
)
Request syntax¶
svc$delete_report_definition(
ReportName = "string"
)
Examples¶
## Not run:
# The following example deletes the AWS Cost and Usage report named
# ExampleReport.
svc$delete_report_definition(
ReportName = "ExampleReport"
)
## End(Not run)