describeAccountAttributes method

Future<DescribeAccountAttributesResponse> describeAccountAttributes()

Describes your OpsWorks-CM account attributes.

This operation is synchronous.

Implementation

Future<DescribeAccountAttributesResponse> describeAccountAttributes() async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'OpsWorksCM_V2016_11_01.DescribeAccountAttributes'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
  );

  return DescribeAccountAttributesResponse.fromJson(jsonResponse.body);
}