---
title: AWS
kind: note
description: 'Amazon''s cloud hosting platform Competitors Azure GCP Resources CloudFront + Lambda Authentication FAQ Disabling an IAM user Apply policy:'
words: 19
readingMinutes: 1
created: '2024-06-12T18:20:49+02:00'
updated: '2026-06-29T11:03:43+02:00'
---
[Amazon](/notes/amazon)'s cloud hosting platform
## Competitors
- [Azure](/notes/azure)
- [GCP](/notes/google-cloud)
## Resources
- [CloudFront + Lambda Authentication](https://learn.openwaterfoundation.org/owf-learn-aws/cdn/cloudfront/private-auth-lambda/)
## FAQ
### Disabling an IAM user
- Apply policy:
	```json
	{
		"Version": "2012-10-17",
		"Statement": [
			{
				"Effect": "Deny",
				"Action": "*",
				"Resource": "*"
			}
		]
	}
	```
