0 votes
in AWS Access Management by
What is a group in IAM

1 Answer

0 votes
by

A group is a collection of IAM users. Manage group membership as a simple list:

  1. Add users to or remove them from a group.
  2. A user can belong to multiple groups.
  3. Groups cannot belong to other groups.
  4. Groups can be granted permissions using access control policies. This makes it easier to manage permissions for a collection of users, rather than having to manage permissions for each individual user.
  5. Groups do not have security credentials, and cannot access web services directly; they exist solely to make it easier to manage user permissions. For details, see Working with Groups and Users.
...