Complete the code to create an IAM user named 'Alice'.
aws iam create-user --user-name [1]The command creates an IAM user with the specified name. Here, 'Alice' is the correct user name.
Complete the code to add the user 'Alice' to the group named 'Developers'.
aws iam add-user-to-group --group-name [1] --user-name AliceThis command adds the user 'Alice' to the group 'Developers'. The group name must match exactly.
Fix the error in the command to list all users in the group 'Admins'.
aws iam get-group --group-name [1]The command 'aws iam get-group' lists users in the specified group. The group name must be 'Admins' to list its users.
Fill both blanks to create a group named 'Testers' and attach the policy 'AmazonS3ReadOnlyAccess' to it.
aws iam create-group --group-name [1] aws iam attach-group-policy --group-name [2] --policy-arn arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess
Both commands use the group name 'Testers' to create the group and attach the policy to it.
Fill all three blanks to create a user 'Bob', add him to the group 'Admins', and then delete the user.
aws iam create-user --user-name [1] aws iam add-user-to-group --group-name [2] --user-name [3] aws iam delete-user --user-name Bob
The user created is 'Bob', who is added to the 'Admins' group, and then the user 'Bob' is deleted.