getAccountConfiguration method
Use to get the encryption configuration for an account.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<GetAccountConfigurationResponse> getAccountConfiguration() async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/accountConfiguration/get',
exceptionFnMap: _exceptionFns,
);
return GetAccountConfigurationResponse.fromJson(response);
}