deleteUserAccessLoggingSettings method

Future<void> deleteUserAccessLoggingSettings({
  1. required String userAccessLoggingSettingsArn,
})

Deletes user access logging settings.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter userAccessLoggingSettingsArn : The ARN of the user access logging settings.

Implementation

Future<void> deleteUserAccessLoggingSettings({
  required String userAccessLoggingSettingsArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/userAccessLoggingSettings/${userAccessLoggingSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
}