What is AWS IAM?
IAM is Identitiy Access management
What are the features of IAM?
What is IAM logic structure?
IAM Policy Simulator?
Give example of a role which gives access to everything?
{
“Version”: “2012-10-17”,
“Statement” :
[
{
“Effect” : “Allow”,
“Action”: “*”,
“Resource”: “*”
}
]
}