describeAccountConfiguration method

Future<DescribeAccountConfigurationResponse> describeAccountConfiguration()

Describe account configuration

May throw BadGatewayException. May throw BadRequestException. May throw ForbiddenException. May throw GatewayTimeoutException. May throw InternalServerErrorException. May throw TooManyRequestsException.

Implementation

Future<DescribeAccountConfigurationResponse>
    describeAccountConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/prod/accountConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeAccountConfigurationResponse.fromJson(response);
}