getAccountSummary
abstract suspend fun getAccountSummary(input: GetAccountSummaryRequest = GetAccountSummaryRequest { }): GetAccountSummaryResponse
Retrieves information about IAM entity usage and IAM quotas in the Amazon Web Services account.
For information about IAM quotas, see IAM and STS quotas in the IAM User Guide.
Samples
fun main() {
//sampleStart
// The following command returns information about the IAM entity quotas and usage in the current AWS
// account.
val resp = iamClient.getAccountSummary()
//sampleEnd
}