module AWS::S3::ACLObject::ClassMethods

def string_attr(element_name, options = {})

def string_attr(element_name, options = {})
  method_name = options[:method_name] ||
    Core::Inflection.ruby_name(element_name)
  attr_accessor(method_name)
  setter_option(method_name)
  string_input_validator(method_name)
  validate_string(method_name) if options[:required]
  body_xml_string_content(element_name, method_name)
end