describeLoggingOptions method

Future<DescribeLoggingOptionsResponse> describeLoggingOptions()

Retrieves the current settings of the AWS IoT Analytics logging options.

May throw InvalidRequestException. May throw ResourceNotFoundException. May throw InternalFailureException. May throw ServiceUnavailableException. May throw ThrottlingException.

Implementation

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