describeReportDefinitions
abstract suspend fun describeReportDefinitions(input: DescribeReportDefinitionsRequest = DescribeReportDefinitionsRequest { }): DescribeReportDefinitionsResponse
Lists the Amazon Web Services Cost and Usage Report available to this account.
Samples
fun main() {
//sampleStart
// The following example lists the AWS Cost and Usage reports for the account.
val resp = costAndUsageReportClient.describeReportDefinitions {
maxResults = 5
}
//sampleEnd
}