# File lib/fog/aws/models/storage/directory.rb, line 99
        def save
          requires :key

          options = {}

          options['x-amz-acl'] = acl if acl

          if location = attributes[:location] || (self.service.region != 'us-east-1' && self.service.region)
            options['LocationConstraint'] = location
          end

          service.put_bucket(key, options)

          true
        end