describeAccountAttributes
inline suspend fun DatabaseMigrationClient.describeAccountAttributes(crossinline block: DescribeAccountAttributesRequest.Builder.() -> Unit): DescribeAccountAttributesResponse
Lists all of the DMS attributes for a customer account. These attributes include DMS quotas for the account and a unique account identifier in a particular DMS region. DMS quotas include a list of resource quotas supported by the account, such as the number of replication instances allowed. The description for each resource quota, includes the quota name, current usage toward that quota, and the quota's maximum value. DMS uses the unique account identifier to name each artifact used by DMS in the given region.
This command does not take any parameters.
Samples
fun main() {
//sampleStart
// Lists all of the AWS DMS attributes for a customer account. The attributes include AWS DMS quotas
// for the account, such as the number of replication instances allowed. The description for a quota
// includes the quota name, current usage toward that quota, and the quota s maximum value. This operation does
// not take any parameters.
val resp = databaseMigrationClient.describeAccountAttributes()
//sampleEnd
}