putLoggingOptions method

Future<void> putLoggingOptions({
  1. required LoggingOptions loggingOptions,
})

Sets logging options for IoT SiteWise.

May throw ConflictingOperationException. May throw InternalFailureException. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter loggingOptions : The logging options to set.

Implementation

Future<void> putLoggingOptions({
  required LoggingOptions loggingOptions,
}) async {
  final $payload = <String, dynamic>{
    'loggingOptions': loggingOptions,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'PUT',
    requestUri: '/logging',
    exceptionFnMap: _exceptionFns,
  );
}