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