describeAccountAttributes
inline suspend fun RdsClient.describeAccountAttributes(crossinline block: DescribeAccountAttributesRequest.Builder.() -> Unit): DescribeAccountAttributesResponse
Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value.
This command doesn't take any parameters.
Samples
fun main() {
//sampleStart
// The following example retrieves the attributes for the current AWS account.
val resp = rdsClient.describeAccountAttributes()
//sampleEnd
}