class AWS::IAM::Group

need.
and give that group the types of permissions admins typically
their jobs. For example, you could have a group called Admins
collectively assign permissions to the users so they can do
with AWS; only users do. The main reason to create groups is to
Represents a group of users. Groups don’t directly interact

def delete

have any attached policies.
Deletes the group. The group must not contain any users or
def delete
  client.delete_group(:group_name => name)
  nil
end

def exists?; super; end

(see Resource#exists?)
def exists?; super; end

def initialize(name, options = {})

Other tags:
    Private: -
def initialize(name, options = {})
  options[:name] = name
  super
end

def policies

Returns:
  • (GroupPolicyCollection) - An object representing all the
def policies
  GroupPolicyCollection.new(self)
end

def resource_identifiers

def resource_identifiers
  [[:group_name, name]]
end

def users

Returns:
  • (GroupUserCollection) - An object representing all the
def users
  GroupUserCollection.new(self)
end