getEncryptionConfig method

Future<GetEncryptionConfigResult> getEncryptionConfig()

Retrieves the current encryption configuration for X-Ray data.

May throw InvalidRequestException. May throw ThrottledException.

Implementation

Future<GetEncryptionConfigResult> getEncryptionConfig() async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/EncryptionConfig',
    exceptionFnMap: _exceptionFns,
  );
  return GetEncryptionConfigResult.fromJson(response);
}