# File lib/fog/aws/requests/compute/delete_snapshot.rb, line 33
        def delete_snapshot(snapshot_id)
          response = Excon::Response.new
          if snapshot = self.data[:snapshots].delete(snapshot_id)
            response.status = true
            response.body = {
              'requestId' => Fog::AWS::Mock.request_id,
              'return'    => true
            }
            response
          else
            raise Fog::Compute::AWS::NotFound.new("The snapshot '#{snapshot_id}' does not exist.")
          end
        end