# File lib/fog/aws/models/storage/directory.rb, line 104
        def save
          requires :key
          options = {}
          if @acl
            options['x-amz-acl'] = @acl
          end
          options['LocationConstraint'] = @location || self.connection.region
          connection.put_bucket(key, options)
          true
        end