class AWS::IAM::UserGroupCollection

def add(group)

Parameters:
  • group (Group) -- The group to which the user should be added.
def add(group)
  client.add_user_to_group(:group_name => group.name,
                           :user_name => user.name)
  nil
end