This certification validates practical ability to design, deploy, and operate scalable cloud services, with emphasis on cloud architecture and operations. It is intended for professionals who manage reliable, secure, and cost-aware environments.
You control access to S3 buckets and objects with:
The AWS IT infrastructure that AWS provides, complies with the following IT security standards, including:
Auto Scaling requests are signed with a _________ signature calculated from the request and the user's private key.
The following policy can be attached to an IAM group. It lets an IAM user in that group access a "home directory" in AWS S3 that matches their user name using the console.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": ["s3:*"],
"Effect": "Allow",
"Resource": ["arn:aws:s3:::bucket-name"],
"Condition":{"StringLike":{"s3:prefix":["home/${aws:username}/*"]}}
},
{
"Action":["s3:*"],
"Effect":"Allow",
"Resource": ["arn:aws:s3:::bucket-name/home/${aws:username}/*"]
}
]
}
What does elasticity mean to AWS?