describeLoggingOptions method

Future<DescribeLoggingOptionsResponse> describeLoggingOptions()

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

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

Implementation

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