JSON Web Token - secure way to transmit information between parties as digitally signed tokens. Like having a tamper-proof ID card that proves who you are.
Web applications use JWT tokens to verify user identity without repeatedly asking for passwords.
JWT (JSON Web Token) is an open standard (RFC 7519), not a cloud provider service. AWS, Azure, GCP, and OCI commonly use JWTs within their identity platforms (e.g., OAuth 2.0/OpenID Connect) and API gateways to authenticate users and authorize API calls.