Method: AWS::IAM::Group#users
- Defined in:
- lib/aws/iam/group.rb
#users ⇒ GroupUserCollection
Provides access to the users in the group. For example:
# get the names of all the users in the group
group.users.map(&:name)
# remove all users from the group
group.users.clear
83 84 85 |
# File 'lib/aws/iam/group.rb', line 83 def users GroupUserCollection.new(self) end |