# File lib/fog/aws/requests/simpledb/delete_domain.rb, line 30
        def delete_domain(domain_name)
          response = Excon::Response.new
          if self.data[:domains].delete(domain_name)
            response.status = 200
            response.body = {
              'BoxUsage'  => Fog::AWS::Mock.box_usage,
              'RequestId' => Fog::AWS::Mock.request_id
            }
          end
          response
        end