class Aws::Stubbing::StubData

def remove_checksums(stub)

def remove_checksums(stub)
  if @rules && @rules.shape.is_a?(Seahorse::Model::Shapes::StructureShape)
    @rules.shape.members.each do |key, member|
      if member.location == 'header' && member.location_name.start_with?('x-amz-checksum-')
        stub[key] = nil
      end
    end
  end
end