describeAccountAttributes method

Future<AccountAttributesMessage> describeAccountAttributes()

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.

Implementation

Future<AccountAttributesMessage> describeAccountAttributes() async {
  final $request = <String, dynamic>{};
  final $result = await _protocol.send(
    $request,
    action: 'DescribeAccountAttributes',
    version: '2014-10-31',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DescribeAccountAttributesMessage'],
    shapes: shapes,
    resultWrapper: 'DescribeAccountAttributesResult',
  );
  return AccountAttributesMessage.fromXml($result);
}