disassociateSessionLogger method
Disassociates a session logger from a portal.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter portalArn :
The ARN of the portal to disassociate from the a session logger.
Implementation
Future<void> disassociateSessionLogger({
required String portalArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/portals/${portalArn.split('/').map(Uri.encodeComponent).join('/')}/sessionLogger',
exceptionFnMap: _exceptionFns,
);
}