class AWS::S3::AccessControlList::Permission

def initialize(name)

Other tags:
    Private: -
def initialize(name)
  raise "expected string or symbol" unless
    name.respond_to?(:to_str) or name.respond_to?(:to_sym)
  @name = name.to_sym
end