deleteSessionLogger method
Deletes a session logger resource.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter sessionLoggerArn :
The ARN of the session logger.
Implementation
Future<void> deleteSessionLogger({
required String sessionLoggerArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/sessionLoggers/${sessionLoggerArn.split('/').map(Uri.encodeComponent).join('/')}',
exceptionFnMap: _exceptionFns,
);
}