Thanks @MarileeTurscak for taking out time and sorry for not explaining my point clearly. Let me retry it.
Basically, if I play it out in a flow...
user hits SAML web-app i.e., https://myapp.com
app redirects user to AAD
AAD finish authentication and redirect user back to the app with SAML token
App validates the token and show the user the home-screen of the app
Now if user does not carry out any activity on the app and just keep the browser window open for 1 hour, app wants to send notification to the user that you will be logged out in 5 min. if you do not send any request.
If user does not do anything, app can use its java-script and send a sign-out request to AAD and AAD will close the SSO-session.
In that flow, the web-app side session/cookie will also be invalidated with the help of post_logout_redirect_uri
As you can see this idle-time-out implementation of web-app session is totally application side of work.
What is the role of AAD in triggering this ?
And hence how the activity-based timeout policy helps ?
Thanks.