describeReportDefinitions
inline suspend fun CostAndUsageReportClient.describeReportDefinitions(crossinline block: DescribeReportDefinitionsRequest.Builder.() -> Unit): 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
}